[SCM] libav/experimental: vf_fieldorder: avoid using AV_PIX_FMT_NB
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Aug 10 16:03:15 UTC 2014
The following commit has been merged in the experimental branch:
commit a7d070acb55c3ebbdd5e93e3366f32865732b8a3
Author: Anton Khirnov <anton at khirnov.net>
Date: Sat May 24 11:15:15 2014 +0200
vf_fieldorder: avoid using AV_PIX_FMT_NB
That hardcodes the number of pixel formats into lavfi and will break
when a shared lavu is updated, adding new pixel formats.
diff --git a/libavfilter/vf_fieldorder.c b/libavfilter/vf_fieldorder.c
index a4df87f..c05d081 100644
--- a/libavfilter/vf_fieldorder.c
+++ b/libavfilter/vf_fieldorder.c
@@ -50,9 +50,10 @@ static int query_formats(AVFilterContext *ctx)
/** accept any input pixel format that is not hardware accelerated, not
* a bitstream format, and does not have vertically sub-sampled chroma */
if (ctx->inputs[0]) {
+ const AVPixFmtDescriptor *desc = NULL;
formats = NULL;
- for (pix_fmt = 0; pix_fmt < AV_PIX_FMT_NB; pix_fmt++) {
- const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
+ while ((desc = av_pix_fmt_desc_next(desc))) {
+ pix_fmt = av_pix_fmt_desc_get_id(desc);
if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL ||
desc->flags & AV_PIX_FMT_FLAG_BITSTREAM) &&
desc->nb_components && !desc->log2_chroma_h &&
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list