Commit a20f049c authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/libvpxenc: make class names unique

This should fix an infinite loop with -h full

Found-by: <Foofie>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d1e8d4b0
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment