lavfi: remove more instances of avfilter_default_filter_name()
They were discarded in 0f0f3bd1e0.
This commit is contained in:
parent
62b39d41cd
commit
647e2e070f
@ -80,7 +80,7 @@ static const AVOption movie_options[]= {
|
|||||||
|
|
||||||
static const AVClass movie_class = {
|
static const AVClass movie_class = {
|
||||||
"MovieContext",
|
"MovieContext",
|
||||||
avfilter_default_filter_name,
|
av_default_item_name,
|
||||||
movie_options
|
movie_options
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -158,7 +158,7 @@ static int request_frame(AVFilterLink *outlink)
|
|||||||
|
|
||||||
static const AVClass nullsrc_class = {
|
static const AVClass nullsrc_class = {
|
||||||
.class_name = "NullSourceContext",
|
.class_name = "NullSourceContext",
|
||||||
.item_name = avfilter_default_filter_name,
|
.item_name = av_default_item_name,
|
||||||
.option = testsrc_options,
|
.option = testsrc_options,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -193,7 +193,7 @@ AVFilter avfilter_vsrc_nullsrc = {
|
|||||||
|
|
||||||
static const AVClass testsrc_class = {
|
static const AVClass testsrc_class = {
|
||||||
.class_name = "TestSourceContext",
|
.class_name = "TestSourceContext",
|
||||||
.item_name = avfilter_default_filter_name,
|
.item_name = av_default_item_name,
|
||||||
.option = testsrc_options,
|
.option = testsrc_options,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -415,7 +415,7 @@ AVFilter avfilter_vsrc_testsrc = {
|
|||||||
|
|
||||||
static const AVClass rgbtestsrc_class = {
|
static const AVClass rgbtestsrc_class = {
|
||||||
.class_name = "RGBTestSourceContext",
|
.class_name = "RGBTestSourceContext",
|
||||||
.item_name = avfilter_default_filter_name,
|
.item_name = av_default_item_name,
|
||||||
.option = testsrc_options,
|
.option = testsrc_options,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user