[FFmpeg-cvslog] avfilter/hflip: Avoid using non public AV_PIX_FMT_NB
Michael Niedermayer
git at videolan.org
Tue May 27 18:00:15 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue May 27 17:43:03 2014 +0200| [5feac96fdb37a8c4b55020fb7316b30689bcd0b4] | committer: Michael Niedermayer
avfilter/hflip: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5feac96fdb37a8c4b55020fb7316b30689bcd0b4
---
libavfilter/vf_hflip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index faf3285..519a609 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 ||
More information about the ffmpeg-cvslog
mailing list