mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
amrnbdec: allow sample rates other than 8khz
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f58f600c68
commit
d8aaec38fc
1 changed files with 2 additions and 1 deletions
|
|
@ -169,7 +169,8 @@ static av_cold int amrnb_decode_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_FLT;
|
||||
|
||||
// p->excitation always points to the same position in p->excitation_buf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue