summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-24 02:03:01 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-24 02:05:57 +0200
commitda728d5d2e7993911c7ed92c212ab900b7be180c (patch)
treed00eb5fce5bf1b6f35479d65b18af39478a6255c /ffmpeg.c
parentcaf7381d502a4e42a099eb56719f80cce00f3ac9 (diff)
ffmpeg: fix FF_API_OLD_VSINK_API=0 case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index be28d2b4b0..e73b76b4d3 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -792,7 +792,7 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
#else
ret = avfilter_graph_create_filter(&ofilter->filter,
avfilter_get_by_name("buffersink"),
- "ffmpeg_buffersink", NULL, buffersink_params, fg->graph);
+ "ffmpeg_buffersink", NULL, NULL/*buffersink_params*/, fg->graph);
#endif
av_freep(&buffersink_params);