diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-17 12:21:34 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-06-17 20:32:24 +0200 |
commit | 8f45c3141c7056772ce9875151e3cf97b72398ea (patch) | |
tree | e604fcf621eaeb30d8b70ffba6c9a6a507c9f477 | |
parent | 251f398798967380ce3fa3d1035e98c33e688338 (diff) | |
download | ffmpeg-8f45c3141c7056772ce9875151e3cf97b72398ea.tar.gz |
ffplay: rename buffer source instance from "src" to "ffplay_buffer"
The new name is more descriptive.
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1566,10 +1566,9 @@ static int configure_video_filters(AVFilterGraph *graph, VideoState *is, const c is->video_st->time_base.num, is->video_st->time_base.den, codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den); - if ((ret = avfilter_graph_create_filter(&filt_src, avfilter_get_by_name("buffer"), - "src", buffersrc_args, NULL, + "ffplay_buffer", buffersrc_args, NULL, graph)) < 0) return ret; |