diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 07:56:26 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-16 07:56:26 +0000 |
commit | c75b3d2e8fdcd1742a139d6628234a15ff8b4ba4 (patch) | |
tree | 38f52a00ccbce0eb0d0bc4f83820da64ed08fe7a | |
parent | 65929418f50535a40dfc4c7b105d31903228bdfc (diff) | |
download | ffmpeg-c75b3d2e8fdcd1742a139d6628234a15ff8b4ba4.tar.gz |
Clarify description for the MONOWHITE and MONOBLACK pixel formats.
Originally committed as revision 23144 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/pixfmt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 75daed9afa..d976f343ba 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -68,8 +68,8 @@ enum PixelFormat { PIX_FMT_YUV410P, ///< planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples) PIX_FMT_YUV411P, ///< planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) PIX_FMT_GRAY8, ///< Y , 8bpp - PIX_FMT_MONOWHITE, ///< Y , 1bpp, 0 is white, 1 is black - PIX_FMT_MONOBLACK, ///< Y , 1bpp, 0 is black, 1 is white + PIX_FMT_MONOWHITE, ///< Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb + PIX_FMT_MONOBLACK, ///< Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb PIX_FMT_PAL8, ///< 8 bit with PIX_FMT_RGB32 palette PIX_FMT_YUVJ420P, ///< planar YUV 4:2:0, 12bpp, full scale (JPEG) PIX_FMT_YUVJ422P, ///< planar YUV 4:2:2, 16bpp, full scale (JPEG) |