Skip to content
Snippets Groups Projects
Commit 3fc7b471 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

buffersink: switch from opaque to AVOptions for params

parent a1e7e02e
No related branches found
No related tags found
No related merge requests found
......@@ -227,13 +227,10 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
}
if (type == AVMEDIA_TYPE_VIDEO) {
AVBufferSinkParams *buffersink_params = av_buffersink_params_alloc();
buffersink_params->pixel_fmts = pix_fmts;
ret = avfilter_graph_create_filter(&sink, buffersink,
inout->name, NULL,
buffersink_params, lavfi->graph);
av_freep(&buffersink_params);
NULL, lavfi->graph);
av_opt_set_int_list(sink, "pix_fmts", pix_fmts, AV_PIX_FMT_NONE, AV_OPT_SEARCH_CHILDREN);
if (ret < 0)
goto end;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment