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 /libavcodec/avcodec.h | |
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 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4503441c66..b4e5b03d19 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -37,8 +37,8 @@ extern "C" { #define AV_STRINGIFY(s) AV_TOSTRING(s) #define AV_TOSTRING(s) #s -#define LIBAVCODEC_VERSION_INT ((51<<16)+(19<<8)+0) -#define LIBAVCODEC_VERSION 51.19.0 +#define LIBAVCODEC_VERSION_INT ((51<<16)+(20<<8)+0) +#define LIBAVCODEC_VERSION 51.20.0 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) @@ -147,6 +147,7 @@ enum CodecID { CODEC_ID_TARGA, CODEC_ID_DSICINVIDEO, CODEC_ID_TIERTEXSEQVIDEO, + CODEC_ID_TIFF, /* various pcm "codecs" */ CODEC_ID_PCM_S16LE= 0x10000, @@ -2300,6 +2301,7 @@ extern AVCodec targa_decoder; extern AVCodec dsicinvideo_decoder; extern AVCodec dsicinaudio_decoder; extern AVCodec tiertexseqvideo_decoder; +extern AVCodec tiff_decoder; /* pcm codecs */ #define PCM_CODEC(id, name) \ |