diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-10-05 10:59:15 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-10-28 14:54:13 -0700 |
commit | 77b5c82b49dacfab9966df2d7532ae155478769e (patch) | |
tree | b33a660595f6d6019d7e2e99f22576ad6b7ed381 /libavformat/isom.c | |
parent | bc2dd36740ef13d1f95c243ff58167fafb3d9a51 (diff) | |
download | ffmpeg-77b5c82b49dacfab9966df2d7532ae155478769e.tar.gz |
isom: Add MPEG4SYSTEMS dummy object type indication.
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index c5b01f22e3..b0eef375c6 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -61,6 +61,8 @@ const AVCodecTag ff_mp4_obj_type[] = { { CODEC_ID_VORBIS , 0xDD }, /* non standard, gpac uses it */ { CODEC_ID_DVD_SUBTITLE, 0xE0 }, /* non standard, see unsupported-embedded-subs-2.mp4 */ { CODEC_ID_QCELP , 0xE1 }, + { CODEC_ID_MPEG4SYSTEMS, 0x01 }, + { CODEC_ID_MPEG4SYSTEMS, 0x02 }, { CODEC_ID_NONE , 0 }, }; |