Commit f3fdc32e authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/crop: Avoid using non public AV_PIX_FMT_NB

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 64fb19cc
...@@ -95,7 +95,7 @@ static int query_formats(AVFilterContext *ctx) ...@@ -95,7 +95,7 @@ static int query_formats(AVFilterContext *ctx)
AVFilterFormats *formats = NULL; AVFilterFormats *formats = NULL;
int fmt; int fmt;
for (fmt = 0; fmt < AV_PIX_FMT_NB; fmt++) { for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt); const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
if (!(desc->flags & (AV_PIX_FMT_FLAG_HWACCEL | AV_PIX_FMT_FLAG_BITSTREAM)) && if (!(desc->flags & (AV_PIX_FMT_FLAG_HWACCEL | AV_PIX_FMT_FLAG_BITSTREAM)) &&
!((desc->log2_chroma_w || desc->log2_chroma_h) && !(desc->flags & AV_PIX_FMT_FLAG_PLANAR))) !((desc->log2_chroma_w || desc->log2_chroma_h) && !(desc->flags & AV_PIX_FMT_FLAG_PLANAR)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment