diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 09:16:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-03 09:16:36 +0200 |
commit | a8e963835a43e64311751b01f44707bd0e360d46 (patch) | |
tree | 3b21d37293b3765a70ae195dc61fd6984e3b69d9 /libavfilter | |
parent | 8e970a58614fe15565d5849c933f17b9ec138647 (diff) | |
parent | b5a138652ff8a5b987d3e1191e67fd9f6575527e (diff) | |
download | ffmpeg-a8e963835a43e64311751b01f44707bd0e360d46.tar.gz |
Merge commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e'
* commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e':
Give less generic names to global library option arrays
Conflicts:
libavcodec/options_table.h
libavfilter/avfilter.c
libavformat/options_table.h
libswscale/options.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index c3228cd855..d09a3b53d9 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -539,7 +539,7 @@ static const AVClass *filter_child_class_next(const AVClass *prev) #define OFFSET(x) offsetof(AVFilterContext, x) #define FLAGS AV_OPT_FLAG_FILTERING_PARAM -static const AVOption options[] = { +static const AVOption avfilter_options[] = { { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS, { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" }, { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .unit = "thread_type" }, @@ -554,7 +554,7 @@ static const AVClass avfilter_class = { .category = AV_CLASS_CATEGORY_FILTER, .child_next = filter_child_next, .child_class_next = filter_child_class_next, - .option = options, + .option = avfilter_options, }; static int default_execute(AVFilterContext *ctx, action_func *func, void *arg, |