From 7992c2867efc79eb8e9983e15a7ba998d6c48ffd Mon Sep 17 00:00:00 2001 From: Tobias Rapp Date: Mon, 12 Nov 2018 17:04:43 +0100 Subject: [PATCH] avcodec/libopenh264enc: fix class_name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverts some accidental change in commit e621b1ca646a2f268797adc3194b694a852548d2. Reviewed-by: Jan Ekström Signed-off-by: Tobias Rapp --- libavcodec/libopenh264enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c index 5baa423433..ae6d17c6d2 100644 --- a/libavcodec/libopenh264enc.c +++ b/libavcodec/libopenh264enc.c @@ -75,7 +75,7 @@ static const AVOption options[] = { }; static const AVClass class = { - .class_name = "libvo_amrwbenc", + .class_name = "libopenh264enc", .item_name = av_default_item_name, .option = options, .version = LIBAVUTIL_VERSION_INT,