From 5301aed9aeb9f9af2d5ca7971ed822948f4c78f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 9 Dec 2012 13:11:58 +0100 Subject: vc1testenc: give muxer same name as demuxer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- libavformat/vc1testenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/vc1testenc.c b/libavformat/vc1testenc.c index e084516b60..9debf19ef8 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), -- cgit v1.2.3