Mercurial > libavformat.hg
changeset 1073:61acaf09a437 libavformat
fix damr atom, needed for quicktime player
author | bcoudurier |
---|---|
date | Wed, 10 May 2006 17:56:39 +0000 |
parents | a06dd48eaba8 |
children | 829b55eb168c |
files | movenc.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/movenc.c Tue May 09 22:10:17 2006 +0000 +++ b/movenc.c Wed May 10 17:56:39 2006 +0000 @@ -218,10 +218,10 @@ put_tag(pb, "FFMP"); put_byte(pb, 0); - put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */ - put_be16(pb, 0xa); /* Mode change period (no restriction) */ - //put_be16(pb, 0x81ff); /* Mode set (all modes for AMR_NB) */ - //put_be16(pb, 1); /* Mode change period (no restriction) */ + //put_be16(pb, 0x80); /* Mode set (all modes for AMR_NB) */ + //put_be16(pb, 0xa); /* Mode change period (no restriction) */ + put_be16(pb, 0x81ff); /* Mode set (all modes for AMR_NB) */ + put_be16(pb, 1); /* Mode change period (no restriction) */ return 0x11; }