summaryrefslogtreecommitdiff
path: root/libavfilter/vf_telecine.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-27 17:43:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-27 17:45:36 +0200
commitee0c91cc6582453b2e730f3a46e15ec5f1fa2273 (patch)
tree855af36b7e33b95e6420c7223d9313e698ed615a /libavfilter/vf_telecine.c
parent515e8aed03187026f975cf4edbac47817bd0a83f (diff)
downloadffmpeg-ee0c91cc6582453b2e730f3a46e15ec5f1fa2273.tar.gz
avfilter/vf_telecine: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_telecine.c')
-rw-r--r--libavfilter/vf_telecine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_telecine.c b/libavfilter/vf_telecine.c
index 811ae2773e..aea63ab7a3 100644
--- a/libavfilter/vf_telecine.c
+++ b/libavfilter/vf_telecine.c
@@ -101,7 +101,7 @@ static int query_formats(AVFilterContext *ctx)
AVFilterFormats *pix_fmts = 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_HWACCEL ||
desc->flags & AV_PIX_FMT_FLAG_PAL ||