mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
parent
d1e8d4b055
commit
a20f049c2a
@ -768,7 +768,7 @@ static av_cold int vp8_init(AVCodecContext *avctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const AVClass class_vp8 = {
|
static const AVClass class_vp8 = {
|
||||||
.class_name = "libvpx encoder",
|
.class_name = "libvpx-vp8 encoder",
|
||||||
.item_name = av_default_item_name,
|
.item_name = av_default_item_name,
|
||||||
.option = options,
|
.option = options,
|
||||||
.version = LIBAVUTIL_VERSION_INT,
|
.version = LIBAVUTIL_VERSION_INT,
|
||||||
@ -797,7 +797,7 @@ static av_cold int vp9_init(AVCodecContext *avctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const AVClass class_vp9 = {
|
static const AVClass class_vp9 = {
|
||||||
.class_name = "libvpx encoder",
|
.class_name = "libvpx-vp9 encoder",
|
||||||
.item_name = av_default_item_name,
|
.item_name = av_default_item_name,
|
||||||
.option = options,
|
.option = options,
|
||||||
.version = LIBAVUTIL_VERSION_INT,
|
.version = LIBAVUTIL_VERSION_INT,
|
||||||
|
Loading…
Reference in New Issue
Block a user