summaryrefslogtreecommitdiff
path: root/libavutil/pixfmt.h
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2015-02-10 12:18:13 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-10 16:03:04 +0100
commitc247fc63e4dcf49995f5ba14021d0dfea6737b74 (patch)
tree230381cc11edcb1cb3b21a2c1a05af671f7699b7 /libavutil/pixfmt.h
parent92e3a6fdac73f7e1d69d69717219a7538877d7a0 (diff)
pixdesc: clarify AV_PIX_FMT_FLAG_ALPHA doxygen
Also make clear that PAL8 can have alpha. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/pixfmt.h')
-rw-r--r--libavutil/pixfmt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h
index 5d443ce9a4..73d4cc987a 100644
--- a/libavutil/pixfmt.h
+++ b/libavutil/pixfmt.h
@@ -44,11 +44,11 @@
* big-endian CPUs.
*
* @par
- * When the pixel format is palettized RGB (AV_PIX_FMT_PAL8), the palettized
+ * When the pixel format is palettized RGB32 (AV_PIX_FMT_PAL8), the palettized
* image data is stored in AVFrame.data[0]. The palette is transported in
* AVFrame.data[1], is 1024 bytes long (256 4-byte entries) and is
* formatted the same as in AV_PIX_FMT_RGB32 described above (i.e., it is
- * also endian-specific). Note also that the individual RGB palette
+ * also endian-specific). Note also that the individual RGB32 palette
* components stored in AVFrame.data[1] should be in the range 0..255.
* This is important as many custom PAL8 video codecs that were designed
* to run on the IBM VGA graphics adapter use 6-bit palette components.