From 875f92876a046d01d5a423d464c1120c5038e322 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 6 Jul 2006 14:46:01 +0000 Subject: [PATCH] 10l, all modes is 0x81FF Originally committed as revision 5641 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index be0bfe4431..66d53d1538 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -208,7 +208,7 @@ static int mov_write_amr_tag(ByteIOContext *pb, MOVTrack *track) put_tag(pb, "FFMP"); put_byte(pb, 0); /* decoder version */ - put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */ + put_be16(pb, 0x81FF); /* Mode set (all modes for AMR_NB) */ put_byte(pb, 0x00); /* Mode change period (no restriction) */ put_byte(pb, 0x01); /* Frames per sample */ return 0x11;