1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

swr: skip memset(0) in rematrix when the array is known to be already 0

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-06-09 02:06:58 +02:00
parent 75d900d52e
commit a5c6349358

View File

@ -362,7 +362,8 @@ int swri_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mus
for(out_i=0; out_i<out->ch_count; out_i++){ for(out_i=0; out_i<out->ch_count; out_i++){
switch(s->matrix_ch[out_i][0]){ switch(s->matrix_ch[out_i][0]){
case 0: case 0:
memset(out->ch[out_i], 0, len * av_get_bytes_per_sample(s->int_sample_fmt)); if(mustcopy)
memset(out->ch[out_i], 0, len * av_get_bytes_per_sample(s->int_sample_fmt));
break; break;
case 1: case 1:
in_i= s->matrix_ch[out_i][1]; in_i= s->matrix_ch[out_i][1];