mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
lavfi/showspectrum: add priv_class and flags to options
This commit is contained in:
parent
7123e9506b
commit
9a199040d8
@ -47,10 +47,11 @@ typedef struct {
|
||||
} ShowSpectrumContext;
|
||||
|
||||
#define OFFSET(x) offsetof(ShowSpectrumContext, x)
|
||||
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|
||||
|
||||
static const AVOption showspectrum_options[] = {
|
||||
{ "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "640x480"}, 0, 0 },
|
||||
{ "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "640x480"}, 0, 0 },
|
||||
{ "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "640x480"}, 0, 0, FLAGS },
|
||||
{ "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "640x480"}, 0, 0, FLAGS },
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
@ -311,4 +312,6 @@ AVFilter avfilter_avf_showspectrum = {
|
||||
},
|
||||
{ .name = NULL }
|
||||
},
|
||||
|
||||
.priv_class = &showspectrum_class,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user