mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_telecine: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
515e8aed03
commit
ee0c91cc65
@ -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 ||
|
||||
|
Loading…
Reference in New Issue
Block a user