mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_copy: use ff_formats_pixdesc_filter()
This commit is contained in:
parent
60836fb6f6
commit
c590ff1fbb
@ -30,17 +30,12 @@
|
||||
static int query_formats(AVFilterContext *ctx)
|
||||
{
|
||||
AVFilterFormats *formats = NULL;
|
||||
int fmt;
|
||||
|
||||
for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
|
||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
|
||||
int ret;
|
||||
if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL)
|
||||
continue;
|
||||
if ((ret = ff_add_format(&formats, fmt)) < 0)
|
||||
return ret;
|
||||
}
|
||||
int ret;
|
||||
|
||||
ret = ff_formats_pixdesc_filter(&formats, 0,
|
||||
AV_PIX_FMT_FLAG_HWACCEL);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
return ff_set_common_formats(ctx, formats);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user