X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_hwmap.c;h=d829b47b4482a2503d73a6afc6642cc45bda93c5;hb=a04ad248a05e7b613abe09b3bb067f555108d794;hp=290559a06ab9fb06ef325c80b956e575c1cdb510;hpb=5c363d3e595a9e5b7c42897b7aab91b91b154ac1;p=ffmpeg diff --git a/libavfilter/vf_hwmap.c b/libavfilter/vf_hwmap.c index 290559a06ab..d829b47b448 100644 --- a/libavfilter/vf_hwmap.c +++ b/libavfilter/vf_hwmap.c @@ -42,9 +42,9 @@ static int hwmap_query_formats(AVFilterContext *avctx) int ret; if ((ret = ff_formats_ref(ff_all_formats(AVMEDIA_TYPE_VIDEO), - &avctx->inputs[0]->out_formats)) < 0 || + &avctx->inputs[0]->outcfg.formats)) < 0 || (ret = ff_formats_ref(ff_all_formats(AVMEDIA_TYPE_VIDEO), - &avctx->outputs[0]->in_formats)) < 0) + &avctx->outputs[0]->incfg.formats)) < 0) return ret; return 0; @@ -419,7 +419,7 @@ static const AVFilterPad hwmap_outputs[] = { { NULL } }; -AVFilter ff_vf_hwmap = { +const AVFilter ff_vf_hwmap = { .name = "hwmap", .description = NULL_IF_CONFIG_SMALL("Map hardware frames"), .uninit = hwmap_uninit,