From c0f8801e47932cc62d4ac88d0fbcbc3a0594c168 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 27 May 2014 17:43:03 +0200 Subject: [PATCH] avfilter/il: Avoid using non public AV_PIX_FMT_NB Signed-off-by: Michael Niedermayer --- libavfilter/vf_il.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_il.c b/libavfilter/vf_il.c index e755caa6e0..b19fea1b6a 100644 --- a/libavfilter/vf_il.c +++ b/libavfilter/vf_il.c @@ -86,7 +86,7 @@ static int query_formats(AVFilterContext *ctx) AVFilterFormats *formats = NULL; 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); if (!(desc->flags & AV_PIX_FMT_FLAG_PAL) && !(desc->flags & AV_PIX_FMT_FLAG_HWACCEL)) ff_add_format(&formats, fmt);