Browse Source

avfilter/vf_noise: Avoid using non public AV_PIX_FMT_NB

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
cfa0ad6eec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_noise.c

+ 1
- 1
libavfilter/vf_noise.c View File

@@ -172,7 +172,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_PLANAR && !((desc->comp[0].depth_minus1 + 1) & 7))
ff_add_format(&formats, fmt);


Loading…
Cancel
Save