summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-31 22:13:16 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-01 06:05:08 +0200
commit3061664a576dc28c7d240206bf4e5eb48f257701 (patch)
tree4d2fa4fc2e6619e6d65cae9e5c7a1de12d73be1c /ffplay.c
parente4e02a7d4726e9370127741eb2873d6671d3f0c3 (diff)
avoid ambigous buffersink names
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffplay.c b/ffplay.c
index 9efc93ae3d..5ed729da0c 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1606,7 +1606,7 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
buffersink_params->pixel_fmts = pix_fmts;
ret = avfilter_graph_create_filter(&filt_out,
- avfilter_get_by_name("buffersink"),
+ avfilter_get_by_name("ffbuffersink"),
"ffplay_buffersink", NULL, buffersink_params, graph);
av_freep(&buffersink_params);
if (ret < 0)