OSDN Git Service

ffmpeg: rename configure_filters() to configure_video_filters()
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sun, 3 Apr 2011 19:54:57 +0000 (21:54 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 10 May 2011 05:15:06 +0000 (07:15 +0200)
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>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
ffmpeg.c

index 90fc371..e43d438 100644 (file)
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -342,7 +342,7 @@ typedef struct AVInputFile {
 
 #if CONFIG_AVFILTER
 
-static int configure_filters(AVInputStream *ist, AVOutputStream *ost)
+static int configure_video_filters(AVInputStream *ist, AVOutputStream *ost)
 {
     AVFilterContext *last_filter, *filter;
     /** filter graph containing all filters including input & output */
@@ -2203,7 +2203,7 @@ static int transcode(AVFormatContext **output_files,
                 ist->decoding_needed = 1;
 
 #if CONFIG_AVFILTER
-                if (configure_filters(ist, ost)) {
+                if (configure_video_filters(ist, ost)) {
                     fprintf(stderr, "Error opening filters!\n");
                     exit(1);
                 }