summaryrefslogtreecommitdiff
path: root/libavfilter/vf_crop.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:43:32 +0200
commitf3fdc32e2f6767a02e070a50414a9c12e0ae6b7e (patch)
treebc9157766a96d82a8f852a34a309928d1e158903 /libavfilter/vf_crop.c
parent64fb19cc995f4bf13085ae1f871334a8ff336b46 (diff)
avfilter/crop: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_crop.c')
-rw-r--r--libavfilter/vf_crop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 30ee077436..a2f029a2f7 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -95,7 +95,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_HWACCEL | AV_PIX_FMT_FLAG_BITSTREAM)) &&
!((desc->log2_chroma_w || desc->log2_chroma_h) && !(desc->flags & AV_PIX_FMT_FLAG_PLANAR)))