From ecd95858d4c760e24d337c5be186780d4a78f1ff Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 26 Jan 2020 14:50:24 +0100 Subject: [PATCH] avfilter/vf_tonemap_opencl: fix long filter description --- libavfilter/vf_tonemap_opencl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_tonemap_opencl.c b/libavfilter/vf_tonemap_opencl.c index 315ead49d4..b880228727 100644 --- a/libavfilter/vf_tonemap_opencl.c +++ b/libavfilter/vf_tonemap_opencl.c @@ -542,7 +542,7 @@ static const AVFilterPad tonemap_opencl_outputs[] = { AVFilter ff_vf_tonemap_opencl = { .name = "tonemap_opencl", - .description = NULL_IF_CONFIG_SMALL("perform HDR to SDR conversion with tonemapping"), + .description = NULL_IF_CONFIG_SMALL("Perform HDR to SDR conversion with tonemapping."), .priv_size = sizeof(TonemapOpenCLContext), .priv_class = &tonemap_opencl_class, .init = &ff_opencl_filter_init,