[FFmpeg-cvslog] lavfi/tonemap: make use of AVFILTER_DEFINE_CLASS

Jun Zhao git at videolan.org
Fri Mar 8 03:38:43 EET 2019


ffmpeg | branch: master | Jun Zhao <barryjzhao at tencent.com> | Tue Mar  5 19:14:33 2019 +0800| [96451477b9115fb426016a152b3d40d2000c8549] | committer: Jun Zhao

lavfi/tonemap: make use of AVFILTER_DEFINE_CLASS

use AVFILTER_DEFINE_CLASS for defining the filter classes

Signed-off-by: Jun Zhao <barryjzhao at tencent.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=96451477b9115fb426016a152b3d40d2000c8549
---

 libavfilter/vf_tonemap.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/libavfilter/vf_tonemap.c b/libavfilter/vf_tonemap.c
index 98a2c4bd23..efd4af5466 100644
--- a/libavfilter/vf_tonemap.c
+++ b/libavfilter/vf_tonemap.c
@@ -287,13 +287,7 @@ static const AVOption tonemap_options[] = {
     { NULL }
 };
 
-static const AVClass tonemap_class = {
-    .class_name       = "tonemap",
-    .item_name        = av_default_item_name,
-    .option           = tonemap_options,
-    .version          = LIBAVUTIL_VERSION_INT,
-    .category         = AV_CLASS_CATEGORY_FILTER,
-};
+AVFILTER_DEFINE_CLASS(tonemap);
 
 static const AVFilterPad tonemap_inputs[] = {
     {



More information about the ffmpeg-cvslog mailing list