avformat/cache: rename the class name fro Cache to cache

liuqideMacBook-Pro:build liuqi$ ffmpeg --help full | grep cache
cannot find cache protocol options.

after patch:
bogon:dash liuqi$ ./ffmpeg --help full | grep cache
cache AVOptions:
can find the cache AVOptions after patch.

Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
This commit is contained in:
Steven Liu 2019-12-04 17:17:18 +08:00
parent ed89763336
commit 4110029e56
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ static const AVOption options[] = {
};
static const AVClass cache_context_class = {
.class_name = "Cache",
.class_name = "cache",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,