Commit 6e6033b7 authored by Michael Niedermayer's avatar Michael Niedermayer

gsmdec: fix decoding of non 8khz gsm files

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 20ac916e
......@@ -37,7 +37,8 @@ static av_cold int gsm_init(AVCodecContext *avctx)
avctx->channels = 1;
avctx->channel_layout = AV_CH_LAYOUT_MONO;
avctx->sample_rate = 8000;
if (!avctx->sample_rate)
avctx->sample_rate = 8000;
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
switch (avctx->codec_id) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment