[FFmpeg-cvslog] vc1testenc: give muxer same name as demuxer

Reimar Döffinger git at videolan.org
Sat Mar 16 13:43:31 CET 2013


ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Sun Dec  9 13:11:58 2012 +0100| [5301aed9aeb9f9af2d5ca7971ed822948f4c78f2] | committer: Reimar Döffinger

vc1testenc: give muxer same name as demuxer

Otherwise ffmpeg -formats claims that we only support demuxing
of that format.
To keep compatibility the struct could be duplicated instead,
but this seems almost like overkill for such a rare format.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger at gmx.de>

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

 libavformat/vc1testenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/vc1testenc.c b/libavformat/vc1testenc.c
index e084516..9debf19 100644
--- a/libavformat/vc1testenc.c
+++ b/libavformat/vc1testenc.c
@@ -83,7 +83,7 @@ static int vc1test_write_trailer(AVFormatContext *s)
 }
 
 AVOutputFormat ff_vc1t_muxer = {
-    .name              = "rcv",
+    .name              = "vc1test",
     .long_name         = NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
     .extensions        = "rcv",
     .priv_data_size    = sizeof(RCVContext),



More information about the ffmpeg-cvslog mailing list