mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
lavfi/boxblur: Readd 8bit colour spaces on big-endian.
This commit is contained in:
parent
bf3126db6a
commit
26ac6d5435
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user