diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-22 11:03:57 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-25 13:42:53 +0200 |
commit | fec512a52cdd1bab84958474cc160fdb7be81dec (patch) | |
tree | 3c29d258bd19f8b0754b4db65da61fb80226b29b /ffplay.c | |
parent | 43583fb85c75ce66f57a6654ca65b55c1c026aae (diff) | |
download | ffmpeg-fec512a52cdd1bab84958474cc160fdb7be81dec.tar.gz |
ffplay: give more meaningful names to the buffersink instances
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |