Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-07-09 04:57:05 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-07-09 05:04:31 +0400
commita20f049c2ab5c0d6cfd4c491cb3b9a16db33b683 (patch)
treeb1b918e3f87dc06c15c5feda1b8320b044705cbe /libavcodec/libvpxenc.c
parentd1e8d4b055bd9a79baa15ca80d9a1476d2a8ccdb (diff)
avcodec/libvpxenc: make class names unique
This should fix an infinite loop with -h full Found-by: <Foofie> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/libvpxenc.c')
-rw-r--r--libavcodec/libvpxenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index f99e94cae9..f5506f7e61 100644
--- a/libavcodec/libvpxenc.c
+++ b/libavcodec/libvpxenc.c
@@ -768,7 +768,7 @@ static av_cold int vp8_init(AVCodecContext *avctx)
}
static const AVClass class_vp8 = {
- .class_name = "libvpx encoder",
+ .class_name = "libvpx-vp8 encoder",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
@@ -797,7 +797,7 @@ static av_cold int vp9_init(AVCodecContext *avctx)
}
static const AVClass class_vp9 = {
- .class_name = "libvpx encoder",
+ .class_name = "libvpx-vp9 encoder",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,