summaryrefslogtreecommitdiff
path: root/libavformat/vc1testenc.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-12-09 13:11:58 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2013-03-16 13:42:16 +0100
commit5301aed9aeb9f9af2d5ca7971ed822948f4c78f2 (patch)
treec66abe42b7909edc017ad7216e22c20a74edab86 /libavformat/vc1testenc.c
parentc3c3bc7ff6b25326800ef6aae3ba46f9de75d3a7 (diff)
downloadffmpeg-5301aed9aeb9f9af2d5ca7971ed822948f4c78f2.tar.gz
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@gmx.de>
Diffstat (limited to 'libavformat/vc1testenc.c')
-rw-r--r--libavformat/vc1testenc.c2
1 files changed, 1 insertions, 1 deletions
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),