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 /libavcodec/options.c | |
parent | 0d6fa3977b016f1b72b0b24b8834ff9222498548 (diff) | |
download | ffmpeg-b5a138652ff8a5b987d3e1191e67fd9f6575527e.tar.gz |
Give less generic names to global library option arrays
Diffstat (limited to 'libavcodec/options.c')
-rw-r--r-- | libavcodec/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/options.c b/libavcodec/options.c index d140552711..8d36c01183 100644 --- a/libavcodec/options.c +++ b/libavcodec/options.c @@ -70,7 +70,7 @@ static const AVClass *codec_child_class_next(const AVClass *prev) static const AVClass av_codec_context_class = { .class_name = "AVCodecContext", .item_name = context_to_name, - .option = options, + .option = avcodec_options, .version = LIBAVUTIL_VERSION_INT, .log_level_offset_offset = offsetof(AVCodecContext, log_level_offset), .child_next = codec_child_next, |