Commit 8effc7c4 authored by bcoudurier's avatar bcoudurier

fix damr atom, needed for quicktime player


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5358 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6b130bd3
...@@ -218,10 +218,10 @@ static int mov_write_damr_tag(ByteIOContext *pb) ...@@ -218,10 +218,10 @@ static int mov_write_damr_tag(ByteIOContext *pb)
put_tag(pb, "FFMP"); put_tag(pb, "FFMP");
put_byte(pb, 0); put_byte(pb, 0);
put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */ //put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */
put_be16(pb, 0xa); /* Mode change period (no restriction) */ //put_be16(pb, 0xa); /* Mode change period (no restriction) */
//put_be16(pb, 0x81ff); /* Mode set (all modes for AMR_NB) */ put_be16(pb, 0x81ff); /* Mode set (all modes for AMR_NB) */
//put_be16(pb, 1); /* Mode change period (no restriction) */ put_be16(pb, 1); /* Mode change period (no restriction) */
return 0x11; return 0x11;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment