[FFmpeg-cvslog] ffplay: give more meaningful names to the buffersink instances
Stefano Sabatini
git at videolan.org
Mon Jun 25 13:57:28 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Jun 22 11:03:57 2012 +0200| [fec512a52cdd1bab84958474cc160fdb7be81dec] | committer: Stefano Sabatini
ffplay: give more meaningful names to the buffersink instances
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fec512a52cdd1bab84958474cc160fdb7be81dec
---
ffplay.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffplay.c b/ffplay.c
index 9a749a1..6a49d85 100644
--- 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)
More information about the ffmpeg-cvslog
mailing list