summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-04-03 21:54:57 +0200
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-04-11 00:14:55 +0200
commit5381823eb6687400e793189a769be473586b51ce (patch)
tree734688da94171013b588584cdd94b930e8693b66 /ffmpeg.c
parentaa0c515a3cfaa4718a7ac7f2b3ea386daf05c019 (diff)
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>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 3e611e6334..8e44895592 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -355,7 +355,7 @@ static struct termios oldtty;
#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 */
@@ -2308,7 +2308,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);
}