[FFmpeg-devel] [PATCH 1/9] lavfi/buffer: do not give weird name to the class filter name

Stefano Sabatini stefasab at gmail.com
Fri Jun 22 12:11:15 CEST 2012


---
 libavfilter/buffersrc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c
index b50a5e1..1ba3ba0 100644
--- a/libavfilter/buffersrc.c
+++ b/libavfilter/buffersrc.c
@@ -231,7 +231,7 @@ static const AVOption video_options[] = {
 #undef V
 
 static const AVClass vbuffer_class = {
-    .class_name = "vbuffer source",
+    .class_name = "buffer",
     .item_name  = av_default_item_name,
     .option     = video_options,
     .version    = LIBAVUTIL_VERSION_INT,
@@ -304,7 +304,7 @@ static const AVOption audio_options[] = {
 };
 
 static const AVClass abuffer_class = {
-    .class_name = "abuffer source",
+    .class_name = "abuffer",
     .item_name  = av_default_item_name,
     .option     = audio_options,
     .version    = LIBAVUTIL_VERSION_INT,
-- 
1.7.5.4



More information about the ffmpeg-devel mailing list