summaryrefslogtreecommitdiff
path: root/libavformat/cache.c
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2019-12-04 17:17:18 +0800
committerSteven Liu <lq@chinaffmpeg.org>2019-12-11 15:22:24 +0800
commit4110029e562c3a1f9b1e8d1d2c890d21981cab03 (patch)
treecbacff4d75af8ecae8a4549eb252ac1be62e8355 /libavformat/cache.c
parented8976333624448d060a763011ac9fe886c86763 (diff)
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>
Diffstat (limited to 'libavformat/cache.c')
-rw-r--r--libavformat/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/cache.c b/libavformat/cache.c
index 3425be9350..09e5d5f832 100644
--- a/libavformat/cache.c
+++ b/libavformat/cache.c
@@ -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,