diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-03-10 22:55:30 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-03-10 22:55:30 +0100 |
commit | 0637b59c2c6aeadead256bdc60fbce32d3d43615 (patch) | |
tree | 180f9a8859b1ffd27b29b23e9ee87f2e97550128 /libavfilter | |
parent | eb7960b2bd36c9a3a2c00d5cf57ee6bcaacd02c1 (diff) | |
download | ffmpeg-0637b59c2c6aeadead256bdc60fbce32d3d43615.tar.gz |
lavfi/boxblur: Fix colourpsace list.
Fixes ticket #4363.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_boxblur.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_boxblur.c b/libavfilter/vf_boxblur.c index 3ccf26899f..bcf0ca5b72 100644 --- a/libavfilter/vf_boxblur.c +++ b/libavfilter/vf_boxblur.c @@ -124,7 +124,7 @@ static int query_formats(AVFilterContext *ctx) const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt); if (!(desc->flags & (AV_PIX_FMT_FLAG_HWACCEL | AV_PIX_FMT_FLAG_BITSTREAM | AV_PIX_FMT_FLAG_PAL)) && (desc->flags & AV_PIX_FMT_FLAG_PLANAR || desc->nb_components == 1) && - (!(desc->flags & AV_PIX_FMT_FLAG_BE) == !HAVE_BIGENDIAN) || desc->comp[0].depth_minus1 == 7) + (!(desc->flags & AV_PIX_FMT_FLAG_BE) == !HAVE_BIGENDIAN || desc->comp[0].depth_minus1 == 7)) ff_add_format(&formats, fmt); } |