Mercurial > libavformat.hg
changeset 3496:cdbf302a3c00 libavformat
chinese avs demuxing support, demux AVSFileFormat.mp4
author | bcoudurier |
---|---|
date | Sun, 22 Jun 2008 23:52:57 +0000 |
parents | ed5686879cdb |
children | f9c75fed4805 |
files | isom.c mov.c |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/isom.c Sun Jun 22 15:52:28 2008 +0000 +++ b/isom.c Sun Jun 22 23:52:57 2008 +0000 @@ -123,6 +123,7 @@ { CODEC_ID_PNG, MKTAG('p', 'n', 'g', ' ') }, { CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ + { CODEC_ID_CAVS, MKTAG('a', 'v', 's', '2') }, { CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n') }, /* AVID DNxHD */ { CODEC_ID_SGI, MKTAG('s', 'g', 'i', ' ') }, /* SGI */
--- a/mov.c Sun Jun 22 15:52:28 2008 +0000 +++ b/mov.c Sun Jun 22 23:52:57 2008 +0000 @@ -1634,6 +1634,7 @@ } static const MOVParseTableEntry mov_default_parse_table[] = { +{ MKTAG('a','v','s','s'), mov_read_extradata }, { MKTAG('c','o','6','4'), mov_read_stco }, { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */ { MKTAG('d','i','n','f'), mov_read_default },