diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-01 14:35:01 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-02 19:19:02 +0200 |
commit | b5a138652ff8a5b987d3e1191e67fd9f6575527e (patch) | |
tree | 58765a7557141d8897905e3324ee2b71c7625534 /libavutil | |
parent | 0d6fa3977b016f1b72b0b24b8834ff9222498548 (diff) | |
download | ffmpeg-b5a138652ff8a5b987d3e1191e67fd9f6575527e.tar.gz |
Give less generic names to global library option arrays
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.h | 4 |
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 |