diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-13 10:48:29 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-13 10:48:29 +0000 |
commit | a991b1fecbd8c9e6f4fc31c191bd12e4be27dbf7 (patch) | |
tree | f97daf386745c2f3bfe4e6f897cf7e692e2515ab /libavformat/mov.c | |
parent | 6ae177aa3bd144c02b8bf7faef42145505db717f (diff) | |
download | ffmpeg-a991b1fecbd8c9e6f4fc31c191bd12e4be27dbf7.tar.gz |
TIFF decoder
Originally committed as revision 6682 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index edeaa9f9f0..7cbfbbc8b0 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -118,6 +118,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, /* AVID DV */ //{ CODEC_ID_JPEG2000, MKTAG('m', 'j', 'p', '2') }, /* JPEG 2000 produced by FCP */ { CODEC_ID_TARGA, MKTAG('t', 'g', 'a', ' ') }, /* Truevision Targa */ + { CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */ { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_NONE, 0 }, }; |