ffmpeg: rename configure_filters() to configure_video_filters()
Mostly useful for the audio-filters branch, to make more apparent the distinction between configure_audio_filters() and configure_video_filters(). Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
This commit is contained in:
parent
aa0c515a3c
commit
5381823eb6
4
ffmpeg.c
4
ffmpeg.c
@ -355,7 +355,7 @@ static struct termios oldtty;
|
|||||||
|
|
||||||
#if CONFIG_AVFILTER
|
#if CONFIG_AVFILTER
|
||||||
|
|
||||||
static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
|
static int configure_video_filters(AVInputStream *ist, AVOutputStream *ost)
|
||||||
{
|
{
|
||||||
AVFilterContext *last_filter, *filter;
|
AVFilterContext *last_filter, *filter;
|
||||||
/** filter graph containing all filters including input & output */
|
/** filter graph containing all filters including input & output */
|
||||||
@ -2308,7 +2308,7 @@ static int transcode(AVFormatContext **output_files,
|
|||||||
ist->decoding_needed = 1;
|
ist->decoding_needed = 1;
|
||||||
|
|
||||||
#if CONFIG_AVFILTER
|
#if CONFIG_AVFILTER
|
||||||
if (configure_filters(ist, ost)) {
|
if (configure_video_filters(ist, ost)) {
|
||||||
fprintf(stderr, "Error opening filters!\n");
|
fprintf(stderr, "Error opening filters!\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user