[FFmpeg-cvslog] avcodec/libvpxenc: make class names unique

Michael Niedermayer git at videolan.org
Tue Jul 9 03:06:45 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Jul  9 02:57:05 2013 +0200| [a20f049c2ab5c0d6cfd4c491cb3b9a16db33b683] | committer: Michael Niedermayer

avcodec/libvpxenc: make class names unique

This should fix an infinite loop with -h full

Found-by: <Foofie>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a20f049c2ab5c0d6cfd4c491cb3b9a16db33b683
---

 libavcodec/libvpxenc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index f99e94c..f5506f7 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,



More information about the ffmpeg-cvslog mailing list