diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2010-05-17 09:53:59 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-05-17 09:53:59 +0000 |
commit | f40f329e9219a8dd7e585345a8ea294fa66562b9 (patch) | |
tree | f212c881aeb4563c5be1493de56fd38174d1dc7f /libavcodec/raw.c | |
parent | edd259f92fa0856d5f7fbcf19704df95b58def7f (diff) | |
download | ffmpeg-f40f329e9219a8dd7e585345a8ea294fa66562b9.tar.gz |
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.c | 2 |
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 ) }, |