Skip to content
Snippets Groups Projects
Commit d8aaec38 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

amrnbdec: allow sample rates other than 8khz

parent f58f600c
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,8 @@ static av_cold int amrnb_decode_init(AVCodecContext *avctx) ...@@ -169,7 +169,8 @@ static av_cold int amrnb_decode_init(AVCodecContext *avctx)
avctx->channels = 1; avctx->channels = 1;
avctx->channel_layout = AV_CH_LAYOUT_MONO; 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_FLT; avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
// p->excitation always points to the same position in p->excitation_buf // p->excitation always points to the same position in p->excitation_buf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment