diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-23 13:17:46 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-10-23 13:17:46 +0000 |
commit | 79f7c32ffba49f4fe63dae09c7d5c9e0afdfacf0 (patch) | |
tree | 51d476c603b656c0a98e3324955bd86db76f40dd /libavformat | |
parent | 7fbde3431a9e4ce5d14d608a615e45409fad6234 (diff) | |
download | ffmpeg-79f7c32ffba49f4fe63dae09c7d5c9e0afdfacf0.tar.gz |
Register .tga and .tiff image extensions
Originally committed as revision 6775 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/img2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index 2a08fa7b24..303190ad24 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -52,6 +52,8 @@ static const IdStrMap img_tags[] = { { CODEC_ID_RAWVIDEO , "y"}, { CODEC_ID_BMP , "bmp"}, { CODEC_ID_GIF , "gif"}, + { CODEC_ID_TARGA , "tga"}, + { CODEC_ID_TIFF , "tiff"}, {0, NULL} }; |