summaryrefslogtreecommitdiff
path: root/libavutil/pixfmt.h
diff options
context:
space:
mode:
authorAndreas Öman <andreas@lonelycoder.com>2010-04-14 20:15:19 +0000
committerAndreas Öman <andreas@lonelycoder.com>2010-04-14 20:15:19 +0000
commit4744f896e5290d30539b3531c017d574847cdd59 (patch)
tree7894ba7407760280cf49de5252a7dd4a85fa0598 /libavutil/pixfmt.h
parentd21b227818a985ffbda756127af4fcbb0d1a7362 (diff)
Add PIX_FMT_Y400A, 8bit gray, 8bit alpha
Originally committed as revision 22881 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r--libavutil/pixfmt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index 9118d3d30f..9ea0ee033c 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -132,6 +132,7 @@ enum PixelFormat {
PIX_FMT_RGB444LE, ///< packed RGB 4:4:4, 16bpp, (msb)4A 4R 4G 4B(lsb), little-endian, most significant bits to 0
PIX_FMT_BGR444BE, ///< packed BGR 4:4:4, 16bpp, (msb)4A 4B 4G 4R(lsb), big-endian, most significant bits to 1
PIX_FMT_BGR444LE, ///< packed BGR 4:4:4, 16bpp, (msb)4A 4B 4G 4R(lsb), little-endian, most significant bits to 1
+ PIX_FMT_Y400A, ///< 8bit gray, 8bit alpha
PIX_FMT_NB, ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
};