Browse Source

Fix typo ('B', 'O', 'W', '1') => ('B', '0', 'W', '1')

Originally committed as revision 23150 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Benoit Fouet 15 years ago
parent
commit
f40f329e92
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/raw.c

+ 1
- 1
libavcodec/raw.c View File

@@ -90,7 +90,7 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = {
{ PIX_FMT_YUV444P, MKTAG('4', '4', '4', 'P') },
{ PIX_FMT_YUVJ444P, MKTAG('4', '4', '4', 'P') },
{ PIX_FMT_MONOWHITE,MKTAG('B', '1', 'W', '0') },
{ PIX_FMT_MONOBLACK,MKTAG('B', 'O', 'W', '1') },
{ PIX_FMT_MONOBLACK,MKTAG('B', '0', 'W', '1') },
{ PIX_FMT_BGR8, MKTAG('B', 'G', 'R', 8 ) },
{ PIX_FMT_RGB8, MKTAG('R', 'G', 'B', 8 ) },
{ PIX_FMT_BGR4, MKTAG('B', 'G', 'R', 4 ) },


Loading…
Cancel
Save