diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-05-27 11:10:39 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-27 11:10:39 +0000 |
commit | 5fe5bde60a88db19d20adc16888dd3812c348f15 (patch) | |
tree | bbc2df8fa09702fe6fa9a28feacd916d7cf24e67 /libavfilter | |
parent | 622c9774376a02e18056679e6f96829a89cd5740 (diff) | |
download | ffmpeg-5fe5bde60a88db19d20adc16888dd3812c348f15.tar.gz |
lavfi/join: make use of AVFILTER_DEFINE_CLASS
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_join.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c index b8e9e85c4f..11978bd97e 100644 --- a/libavfilter/af_join.c +++ b/libavfilter/af_join.c @@ -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) { |