[FFmpeg-cvslog] r13899 - in trunk/libavformat: isom.c mov.c
bcoudurier
subversion
Mon Jun 23 01:52:58 CEST 2008
Author: bcoudurier
Date: Mon Jun 23 01:52:57 2008
New Revision: 13899
Log:
chinese avs demuxing support, demux AVSFileFormat.mp4
Modified:
trunk/libavformat/isom.c
trunk/libavformat/mov.c
Modified: trunk/libavformat/isom.c
==============================================================================
--- trunk/libavformat/isom.c (original)
+++ trunk/libavformat/isom.c Mon Jun 23 01:52:57 2008
@@ -123,6 +123,7 @@ const AVCodecTag codec_movvideo_tags[] =
{ 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 */
Modified: trunk/libavformat/mov.c
==============================================================================
--- trunk/libavformat/mov.c (original)
+++ trunk/libavformat/mov.c Mon Jun 23 01:52:57 2008
@@ -1634,6 +1634,7 @@ static int mov_read_elst(MOVContext *c,
}
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 },
More information about the ffmpeg-cvslog
mailing list