diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-27 17:43:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-27 17:44:45 +0200 |
commit | cfa0ad6eec96e4fec8ee18512f3c9ac1ff2e1720 (patch) | |
tree | fed49a782626c34580130e082378f8d74413bcf1 | |
parent | 1dbc98461b62fa0215c916e8ae79cd12c8a2ae75 (diff) | |
download | ffmpeg-cfa0ad6eec96e4fec8ee18512f3c9ac1ff2e1720.tar.gz |
avfilter/vf_noise: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_noise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_noise.c b/libavfilter/vf_noise.c index 07d1c276c3..934cbcb30d 100644 --- a/libavfilter/vf_noise.c +++ b/libavfilter/vf_noise.c @@ -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); |