diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-01-08 15:24:59 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-01-08 15:24:59 +0100 |
commit | 26ac6d543598f17ceb6771bce08a00291e62a4ef (patch) | |
tree | 862dbd1edc9ed56169fa87e06c09e69333c93c3a /libavfilter | |
parent | bf3126db6a600e9103ecea948589e1f8b195b8f4 (diff) | |
download | ffmpeg-26ac6d543598f17ceb6771bce08a00291e62a4ef.tar.gz |
lavfi/boxblur: Readd 8bit colour spaces on big-endian.
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 89cf015771..3ccf26899f 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->flags & AV_PIX_FMT_FLAG_BE) == !HAVE_BIGENDIAN) || desc->comp[0].depth_minus1 == 7) ff_add_format(&formats, fmt); } |