Browse Source

lavfi/join: make use of AVFILTER_DEFINE_CLASS

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.0
Paul B Mahol 12 years ago
parent
commit
5fe5bde60a
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      libavfilter/af_join.c

+ 1
- 6
libavfilter/af_join.c View File

@@ -77,12 +77,7 @@ static const AVOption join_options[] = {
{ NULL },
};

static const AVClass join_class = {
.class_name = "join filter",
.item_name = av_default_item_name,
.option = join_options,
.version = LIBAVUTIL_VERSION_INT,
};
AVFILTER_DEFINE_CLASS(join);

static int filter_frame(AVFilterLink *link, AVFrame *frame)
{


Loading…
Cancel
Save