summaryrefslogtreecommitdiff
path: root/libavcodec/raw.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2010-05-17 09:53:59 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2010-05-17 09:53:59 +0000
commitf40f329e9219a8dd7e585345a8ea294fa66562b9 (patch)
treef212c881aeb4563c5be1493de56fd38174d1dc7f /libavcodec/raw.c
parentedd259f92fa0856d5f7fbcf19704df95b58def7f (diff)
Fix typo ('B', 'O', 'W', '1') => ('B', '0', 'W', '1')
Originally committed as revision 23150 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r--libavcodec/raw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c
index 68502641d7..022a96f61d 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -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 ) },