Commit edf2c7be authored by Linjie Fu's avatar Linjie Fu Committed by Zhong Li

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: 's avatarLinjie Fu <linjie.fu@intel.com>
Signed-off-by: 's avatarZhong Li <zhongli_dev@126.com>
parent 566de255
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment