ffmpeg: fix changing sample rate handling

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-12-01 04:06:59 +01:00
parent ec20fc1581
commit 03b60509cb
1 changed files with 3 additions and 1 deletions

View File

@ -876,7 +876,9 @@ need_realloc:
}
if (enc->channels != dec->channels
|| enc->sample_fmt != dec->sample_fmt)
|| enc->sample_fmt != dec->sample_fmt
|| enc->sample_rate!= dec->sample_rate
)
ost->audio_resample = 1;
resample_changed = ost->resample_sample_fmt != dec->sample_fmt ||