diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-03-16 14:18:45 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-03-17 12:21:23 +0100 |
commit | 96dd04427fc46e5e25a5ac1f00753207e3aedb0c (patch) | |
tree | 5d2905c0e437a2b30ec589b756c850edf29b1954 | |
parent | 91894f27dce531c13d7e1be20253877f2e1e9e66 (diff) | |
download | ffmpeg-96dd04427fc46e5e25a5ac1f00753207e3aedb0c.tar.gz |
isom: Add support for TSCC2
As produced by Camtasia 4.
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index cd532aa23c..92b743ede5 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -58,6 +58,7 @@ const AVCodecTag ff_mp4_obj_type[] = { { AV_CODEC_ID_DIRAC , 0xA4 }, { AV_CODEC_ID_AC3 , 0xA5 }, { AV_CODEC_ID_DTS , 0xA9 }, /* mp4ra.org */ + { AV_CODEC_ID_TSCC2 , 0xD0 }, /* non standard, camtasia uses it */ { AV_CODEC_ID_VORBIS , 0xDD }, /* non standard, gpac uses it */ { AV_CODEC_ID_DVD_SUBTITLE, 0xE0 }, /* non standard, see unsupported-embedded-subs-2.mp4 */ { AV_CODEC_ID_QCELP , 0xE1 }, |