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

Originally committed as revision 23150 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Benoit Fouet 2010-05-17 09:53:59 +00:00
parent edd259f92f
commit f40f329e92
1 changed files with 1 additions and 1 deletions

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 ) },