diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 16:46:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-12 16:46:38 +0000 |
commit | 3d05e078ee40074a205118f9e48033cfaf390fe7 (patch) | |
tree | 2c5364331d1e52cfe092d6871f4c7daa869a979e /libswscale/swscale.c | |
parent | ec1bca2a0f66b12c8a4a527b99447209188eb313 (diff) | |
download | ffmpeg-3d05e078ee40074a205118f9e48033cfaf390fe7.tar.gz |
Support mono as input format.
Originally committed as revision 27587 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 2f9d306757..c938306cad 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -127,6 +127,8 @@ unsigned swscale_version(void) || (x)==PIX_FMT_BGR4_BYTE \ || (x)==PIX_FMT_RGB4_BYTE \ || (x)==PIX_FMT_YUV440P \ + || (x)==PIX_FMT_MONOWHITE \ + || (x)==PIX_FMT_MONOBLACK \ ) #define isSupportedOut(x) ( \ (x)==PIX_FMT_YUV420P \ |