From: Carl Hetherington Date: Fri, 28 Sep 2012 10:35:00 +0000 (+0100) Subject: Fix probably-incorrect parameter passing, not spotted by compiler due to use of void. X-Git-Tag: v2.0.48~1720^2~2 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=ead1fe52045b83a1a37479bc08f51a4c626e0f8d;p=dcpomatic.git Fix probably-incorrect parameter passing, not spotted by compiler due to use of void. --- diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 2f02147e3..973582ca4 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -464,12 +464,18 @@ Decoder::setup_video_filters () << sample_aspect_ratio_denominator(); int r; + if ((r = avfilter_graph_create_filter (&_buffer_src_context, buffer_src, "in", a.str().c_str(), 0, graph)) < 0) { throw DecodeError ("could not create buffer source"); } - enum PixelFormat pixel_formats[] = { pixel_format(), PIX_FMT_NONE }; - if (avfilter_graph_create_filter (&_buffer_sink_context, buffer_sink, "out", 0, pixel_formats, graph) < 0) { + AVBufferSinkParams* sink_params = av_buffersink_params_alloc (); + PixelFormat* pixel_fmts = new PixelFormat[2]; + pixel_fmts[0] = pixel_format (); + pixel_fmts[1] = PIX_FMT_NONE; + sink_params->pixel_fmts = pixel_fmts; + + if (avfilter_graph_create_filter (&_buffer_sink_context, buffer_sink, "out", 0, sink_params, graph) < 0) { throw DecodeError ("could not create buffer sink."); }