OSDN Git Service

ffplay: give more meaningful names to the buffersink instances
authorStefano Sabatini <stefasab@gmail.com>
Fri, 22 Jun 2012 09:03:57 +0000 (11:03 +0200)
committerStefano Sabatini <stefasab@gmail.com>
Mon, 25 Jun 2012 11:42:53 +0000 (13:42 +0200)
ffplay.c

index 9a749a1..6a49d85 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -1575,12 +1575,12 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c
 #if FF_API_OLD_VSINK_API
     ret = avfilter_graph_create_filter(&filt_out,
                                        avfilter_get_by_name("buffersink"),
-                                       "out", NULL, (void *)pix_fmts, graph);
+                                       "ffplay_buffersink", NULL, (void *)pix_fmts, graph);
 #else
     buffersink_params->pixel_fmts = pix_fmts;
     ret = avfilter_graph_create_filter(&filt_out,
                                        avfilter_get_by_name("buffersink"),
-                                       "out", NULL, buffersink_params, graph);
+                                       "ffplay_buffersink", NULL, buffersink_params, graph);
 #endif
     av_freep(&buffersink_params);
     if (ret < 0)