mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffplay: rename buffer source instance from "src" to "ffplay_buffer"
The new name is more descriptive. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
251f398798
commit
8f45c3141c
3
ffplay.c
3
ffplay.c
@ -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,
|
is->video_st->time_base.num, is->video_st->time_base.den,
|
||||||
codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den);
|
codec->sample_aspect_ratio.num, codec->sample_aspect_ratio.den);
|
||||||
|
|
||||||
|
|
||||||
if ((ret = avfilter_graph_create_filter(&filt_src,
|
if ((ret = avfilter_graph_create_filter(&filt_src,
|
||||||
avfilter_get_by_name("buffer"),
|
avfilter_get_by_name("buffer"),
|
||||||
"src", buffersrc_args, NULL,
|
"ffplay_buffer", buffersrc_args, NULL,
|
||||||
graph)) < 0)
|
graph)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user