diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-11 04:15:04 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-11 04:15:04 +0000 |
commit | 3689cf16497109974777194e6ca18316c758d963 (patch) | |
tree | 624f20b99640d5b33a3ec79edd7252378ca0f097 /libavformat | |
parent | e7becfb25f51be119f909743dcc21dcb86771ac6 (diff) | |
download | ffmpeg-3689cf16497109974777194e6ca18316c758d963.tar.gz |
Targa image decoder
Originally committed as revision 6640 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-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 18e1ab91dd..edeaa9f9f0 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -117,6 +117,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'n') }, /* DVCPRO50 NTSC produced by FCP */ { 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_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ { CODEC_ID_NONE, 0 }, }; |