diff options
author | James Almer <jamrial@gmail.com> | 2018-05-18 17:42:57 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-05-18 17:42:57 -0300 |
commit | 79126ce80e21f2bc986fef7b8f0d6335136538da (patch) | |
tree | 6881390bab243be98e78e34d1b92e4b924163d31 /libavfilter/vsrc_testsrc.c | |
parent | 8f146b526ff8d63adc02e1c5db15850f4589230b (diff) | |
download | ffmpeg-79126ce80e21f2bc986fef7b8f0d6335136538da.tar.gz |
avfilter/vsrc_testsrc: fix a preprocessor check
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/vsrc_testsrc.c')
-rw-r--r-- | libavfilter/vsrc_testsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c index 8d76ae9271..f06714807f 100644 --- a/libavfilter/vsrc_testsrc.c +++ b/libavfilter/vsrc_testsrc.c @@ -1252,7 +1252,7 @@ AVFilter ff_vsrc_yuvtestsrc = { #endif /* CONFIG_YUVTESTSRC_FILTER */ -#if CONFIG_PAL75_FILTER || CONFIG_PAL100_FILTER || CONFIG_SMPTEBARS_FILTER || CONFIG_SMPTEHDBARS_FILTER +#if CONFIG_PAL75BARS_FILTER || CONFIG_PAL100BARS_FILTER || CONFIG_SMPTEBARS_FILTER || CONFIG_SMPTEHDBARS_FILTER static const uint8_t rainbow[7][4] = { { 180, 128, 128, 255 }, /* 75% white */ |