mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/hflip: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f3fdc32e2f
commit
5feac96fdb
|
@ -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 ||
|
||||
|
|
Loading…
Reference in New Issue