diff options
author | Steven Liu <lq@chinaffmpeg.org> | 2019-12-04 17:17:18 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-12-11 15:22:24 +0800 |
commit | 4110029e562c3a1f9b1e8d1d2c890d21981cab03 (patch) | |
tree | cbacff4d75af8ecae8a4549eb252ac1be62e8355 | |
parent | ed8976333624448d060a763011ac9fe886c86763 (diff) | |
download | ffmpeg-4110029e562c3a1f9b1e8d1d2c890d21981cab03.tar.gz |
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>
-rw-r--r-- | libavformat/cache.c | 2 |
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, |