mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
amrwbdec: allow sample rates other than 16khz
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d8aaec38fc
commit
2c1e9383a2
@ -105,7 +105,8 @@ static av_cold int amrwb_decode_init(AVCodecContext *avctx)
|
||||
|
||||
avctx->channels = 1;
|
||||
avctx->channel_layout = AV_CH_LAYOUT_MONO;
|
||||
avctx->sample_rate = 16000;
|
||||
if (!avctx->sample_rate)
|
||||
avctx->sample_rate = 16000;
|
||||
avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
|
||||
|
||||
av_lfg_init(&ctx->prng, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user