summaryrefslogtreecommitdiff
path: root/libavutil/opt.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-01 14:35:01 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-02 19:19:02 +0200
commitb5a138652ff8a5b987d3e1191e67fd9f6575527e (patch)
tree58765a7557141d8897905e3324ee2b71c7625534 /libavutil/opt.h
parent0d6fa3977b016f1b72b0b24b8834ff9222498548 (diff)
Give less generic names to global library option arrays
Diffstat (limited to 'libavutil/opt.h')
-rw-r--r--libavutil/opt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h
index 2d3cc731ee..0181379b78 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -62,7 +62,7 @@
* int bin_len;
* } test_struct;
*
- * static const AVOption options[] = {
+ * static const AVOption test_options[] = {
* { "test_int", "This is a test option of int type.", offsetof(test_struct, int_opt),
* AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX },
* { "test_str", "This is a test option of string type.", offsetof(test_struct, str_opt),
@@ -75,7 +75,7 @@
* static const AVClass test_class = {
* .class_name = "test class",
* .item_name = av_default_item_name,
- * .option = options,
+ * .option = test_options,
* .version = LIBAVUTIL_VERSION_INT,
* };
* @endcode