[FFmpeg-cvslog] libgsm: Reset the MS mode of GSM in the flush function

Martin Storsjö git at videolan.org
Fri Dec 16 01:32:11 CET 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Dec 14 22:32:29 2011 +0200| [1b35af3225392a5328f6534c53e96a56cd5eb305] | committer: Martin Storsjö

libgsm: Reset the MS mode of GSM in the flush function

The mode is set in libgsm_decode_init, but the decoder
object is simply destroyed and recreated in the flush
function - therefore the mode has to be set again.

This fixes playback using the libgsm_ms decoder in avplay.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b35af3225392a5328f6534c53e96a56cd5eb305
---

 libavcodec/libgsm.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index 7623d35..16d9972 100644
--- a/libavcodec/libgsm.c
+++ b/libavcodec/libgsm.c
@@ -212,9 +212,12 @@ static int libgsm_decode_frame(AVCodecContext *avctx, void *data,
 
 static void libgsm_flush(AVCodecContext *avctx) {
     LibGSMDecodeContext *s = avctx->priv_data;
+    int one = 1;
 
     gsm_destroy(s->state);
     s->state = gsm_create();
+    if (avctx->codec_id == CODEC_ID_GSM_MS)
+        gsm_option(s->state, GSM_OPT_WAV49, &one);
 }
 
 AVCodec ff_libgsm_decoder = {



More information about the ffmpeg-cvslog mailing list