summaryrefslogtreecommitdiff
path: root/libavfilter
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:43:46 +0200
commit5feac96fdb37a8c4b55020fb7316b30689bcd0b4 (patch)
tree9068620941adaefa5570777d32e2df26f3032932 /libavfilter
parentf3fdc32e2f6767a02e070a50414a9c12e0ae6b7e (diff)
avfilter/hflip: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_hflip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index faf32853ef..519a609fd0 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -46,7 +46,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_BITSTREAM ||