diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-05-11 06:26:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-11 06:26:47 +0200 |
commit | e3497907efb8b991c6de935ca8eca840f186e45b (patch) | |
tree | 1b8eb22321db71d4c00ecef403ce738e71d78d48 | |
parent | b9660e2ac5958529a40a4a8d3a974e6bfe8eebb9 (diff) | |
download | ffmpeg-e3497907efb8b991c6de935ca8eca840f186e45b.tar.gz |
swscale: remove fork bug that i missed in the merge.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libswscale/utils.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index f00a45cf38..2c6269487a 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -107,13 +107,9 @@ const char *swscale_license(void) || (x)==PIX_FMT_YUV440P \ || (x)==PIX_FMT_MONOWHITE \ || (x)==PIX_FMT_MONOBLACK \ - || (x)==PIX_FMT_YUV420P9LE \ - || (x)==PIX_FMT_YUV420P10LE \ || (x)==PIX_FMT_YUV420P16LE \ || (x)==PIX_FMT_YUV422P16LE \ || (x)==PIX_FMT_YUV444P16LE \ - || (x)==PIX_FMT_YUV420P9BE \ - || (x)==PIX_FMT_YUV420P10BE \ || (x)==PIX_FMT_YUV420P16BE \ || (x)==PIX_FMT_YUV422P16BE \ || (x)==PIX_FMT_YUV444P16BE \ |