diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-12-09 13:11:58 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2013-03-16 13:42:16 +0100 |
commit | 5301aed9aeb9f9af2d5ca7971ed822948f4c78f2 (patch) | |
tree | c66abe42b7909edc017ad7216e22c20a74edab86 | |
parent | c3c3bc7ff6b25326800ef6aae3ba46f9de75d3a7 (diff) | |
download | ffmpeg-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>
-rw-r--r-- | libavformat/vc1testenc.c | 2 |
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), |