summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-04-10 16:34:16 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-05-24 00:42:31 +0200
commitf2ee0656389a6f9db348ce59c4fbb3c58dd648af (patch)
tree3055abecf35a937a182a5539f757a146797c22a5 /libavutil
parentd0ad91c258821708ce21b4ae53018922ef1f5614 (diff)
lavu/pixfmt: move AVPALETTE_SIZE and _COUNT to pixfmt.h
Move AVPALETTE_SIZE and AVPALETTE_COUNT definition from libavcodec/avcodec.h to libavutil/pixfmt.h. The definition is more useful in libavutil, where it can be shared for example by libavfilter and libswscale.
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/avutil.h2
-rw-r--r--libavutil/pixfmt.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h
index 130a4dac7f..ee8b071383 100644
--- a/libavutil/avutil.h
+++ b/libavutil/avutil.h
@@ -153,7 +153,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 51
-#define LIBAVUTIL_VERSION_MINOR 53
+#define LIBAVUTIL_VERSION_MINOR 54
#define LIBAVUTIL_VERSION_MICRO 100
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index 1e81a2ae37..820cd3f190 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -29,6 +29,9 @@
#include "libavutil/avconfig.h"
+#define AVPALETTE_SIZE 1024
+#define AVPALETTE_COUNT 256
+
/**
* Pixel format.
*