git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1e8d4b
)
avcodec/libvpxenc: make class names unique
author
Michael Niedermayer
<michaelni@gmx.at>
Tue, 9 Jul 2013 00:57:05 +0000
(
02:57
+0200)
committer
Michael Niedermayer
<michaelni@gmx.at>
Tue, 9 Jul 2013 01:04:31 +0000
(
03:04
+0200)
This should fix an infinite loop with -h full
Found-by: <Foofie>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/libvpxenc.c
patch
|
blob
|
history
diff --git
a/libavcodec/libvpxenc.c
b/libavcodec/libvpxenc.c
index
f99e94c
..
f5506f7
100644
(file)
--- 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,