Browse Source

libgsmdec: fix decoding of non 8khz gsm files

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
d3dfe99bc5
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/libgsm.c

+ 2
- 1
libavcodec/libgsm.c View File

@@ -156,7 +156,8 @@ static av_cold int libgsm_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_S16;

s->state = gsm_create();


Loading…
Cancel
Save