diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-06 14:46:01 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-07-06 14:46:01 +0000 |
commit | 875f92876a046d01d5a423d464c1120c5038e322 (patch) | |
tree | ec6e9709b51049d3e6c09d363a2cd732257b7894 | |
parent | b7d9da100d3006674d07e06ad21aa6c9586e0e9b (diff) | |
download | ffmpeg-875f92876a046d01d5a423d464c1120c5038e322.tar.gz |
10l, all modes is 0x81FF
Originally committed as revision 5641 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |