diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-24 15:16:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-24 15:16:03 +0000 |
commit | 2b4162f0aee229b303e93948a7f4752efeec4211 (patch) | |
tree | dd3665286281f6f41c9227837b1788cbe269f291 | |
parent | b41899c66c2ab447dee2a3afb67629ef9b91fbb7 (diff) | |
download | ffmpeg-2b4162f0aee229b303e93948a7f4752efeec4211.tar.gz |
add some codec object type ids
Originally committed as revision 8495 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/isom.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 799cefe7db..00651951e0 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -43,6 +43,9 @@ const AVCodecTag ff_mov_obj_type[] = { { CODEC_ID_MPEG1VIDEO, 106 }, /* 11172-2 */ { CODEC_ID_MP3 , 107 }, /* 11172-3 */ { CODEC_ID_MJPEG , 108 }, /* 10918-1 */ + { CODEC_ID_PNG , 109 }, + { CODEC_ID_JPEG2000 , 110 }, /* 15444-1 */ + { CODEC_ID_VC1 , 163 }, { CODEC_ID_PCM_S16LE , 224 }, { CODEC_ID_VORBIS , 221 }, { CODEC_ID_QCELP , 225 }, |