Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-05 20:57:09 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-06-05 21:00:52 +0400
commit647e2e070f0dbb7055c3a1443de0f5ed3292e0cc (patch)
tree2a25969929a4308d6031a7426d81feb9bfab6f38 /libavfilter
parent62b39d41cdec2be4e4722aefbd7789305e4ab2ad (diff)
lavfi: remove more instances of avfilter_default_filter_name()
They were discarded in 0f0f3bd1e0.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/src_movie.c2
-rw-r--r--libavfilter/vsrc_testsrc.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/src_movie.c b/libavfilter/src_movie.c
index 8262e0027a..ca73ad064a 100644
--- a/libavfilter/src_movie.c
+++ b/libavfilter/src_movie.c
@@ -80,7 +80,7 @@ static const AVOption movie_options[]= {
static const AVClass movie_class = {
"MovieContext",
- avfilter_default_filter_name,
+ av_default_item_name,
movie_options
};
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c
index 95bf168fc4..7d7d5ce9d4 100644
--- a/libavfilter/vsrc_testsrc.c
+++ b/libavfilter/vsrc_testsrc.c
@@ -158,7 +158,7 @@ static int request_frame(AVFilterLink *outlink)
static const AVClass nullsrc_class = {
.class_name = "NullSourceContext",
- .item_name = avfilter_default_filter_name,
+ .item_name = av_default_item_name,
.option = testsrc_options,
};
@@ -193,7 +193,7 @@ AVFilter avfilter_vsrc_nullsrc = {
static const AVClass testsrc_class = {
.class_name = "TestSourceContext",
- .item_name = avfilter_default_filter_name,
+ .item_name = av_default_item_name,
.option = testsrc_options,
};
@@ -415,7 +415,7 @@ AVFilter avfilter_vsrc_testsrc = {
static const AVClass rgbtestsrc_class = {
.class_name = "RGBTestSourceContext",
- .item_name = avfilter_default_filter_name,
+ .item_name = av_default_item_name,
.option = testsrc_options,
};