summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-04-03 21:54:57 +0200
committerAnton Khirnov <anton@khirnov.net>2011-05-10 07:15:06 +0200
commit0420bf09f7d297210df03b4467cb3945ae627bf6 (patch)
treedc68243b3153d7d25fd20842dce1eff5dc7783b9 /ffmpeg.c
parent5d2c6f42d74680dbb2f94c16770114f18c2d2fd0 (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> Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 90fc37105b..e43d438dfd 100644
--- 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);
}