Commit ba32afd7 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi/split: use AVFILTER_DEFINE_CLASS to define class

parent bec402b5
......@@ -97,19 +97,11 @@ static const AVOption options[] = {
{ NULL },
};
static const AVClass split_class = {
.class_name = "split",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};
#define split_options options
AVFILTER_DEFINE_CLASS(split);
static const AVClass asplit_class = {
.class_name = "asplit",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};
#define asplit_options options
AVFILTER_DEFINE_CLASS(asplit);
static const AVFilterPad avfilter_vf_split_inputs[] = {
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment