summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2003-02-09 16:20:25 +0000
committerFabrice Bellard <fabrice@bellard.org>2003-02-09 16:20:25 +0000
commit7e6d70d0b14f1dccd6204f8d23a6159ffc49b8e0 (patch)
treeda83a2c90c9ba9bb1515b2644dc5d6dbe1487436 /libavcodec/avcodec.h
parentf70f7c6db2b9f39e41b60072b06ba36acf2aa8e9 (diff)
added paletted 8 bit format support
Originally committed as revision 1560 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 39183b3412..8ddcbcf4cd 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -16,8 +16,8 @@ extern "C" {
#define LIBAVCODEC_VERSION_INT 0x000406
#define LIBAVCODEC_VERSION "0.4.6"
-#define LIBAVCODEC_BUILD 4655
-#define LIBAVCODEC_BUILD_STR "4655"
+#define LIBAVCODEC_BUILD 4656
+#define LIBAVCODEC_BUILD_STR "4656"
enum CodecID {
CODEC_ID_NONE,
@@ -86,6 +86,7 @@ enum PixelFormat {
PIX_FMT_GRAY8,
PIX_FMT_MONOWHITE, /* 0 is white */
PIX_FMT_MONOBLACK, /* 0 is black */
+ PIX_FMT_PAL8, /* 8 bit with RGBA palette */
PIX_FMT_NB,
};