summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinjie Fu <[email protected]>2020-01-21 16:50:14 +0800
committerZhong Li <[email protected]>2020-02-18 10:27:02 +0800
commitedf2c7be5c60bc1ab4141b26dd948c4a3adf8423 (patch)
tree9cf38df4c8170023a5990698860e38ec21206513
parent566de255992a0727aa0cbafb08b366e36ea2adc9 (diff)
lavfi/vf_scale_qsv: fix the class_name in help for scale_qsv
Class name is used in show_help_children(avfilter_get_class(),...) to prompt the available filters. $ ffmpeg -h full Before: qsvscale AVOptions: After: scale_qsv AVOptions: Signed-off-by: Linjie Fu <[email protected]> Signed-off-by: Zhong Li <[email protected]>
-rw-r--r--libavfilter/vf_scale_qsv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_scale_qsv.c b/libavfilter/vf_scale_qsv.c
index 1cf5367969..d1fa9424d2 100644
--- a/libavfilter/vf_scale_qsv.c
+++ b/libavfilter/vf_scale_qsv.c
@@ -629,7 +629,7 @@ static const AVOption options[] = {
};
static const AVClass qsvscale_class = {
- .class_name = "qsvscale",
+ .class_name = "scale_qsv",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,