Browse Source

ffmpeg: fix changing sample rate handling

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
03b60509cb
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      ffmpeg.c

+ 3
- 1
ffmpeg.c 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 ||


Loading…
Cancel
Save