diff options
author | Jun Zhao <mypopydev@gmail.com> | 2018-10-12 21:31:09 +0800 |
---|---|---|
committer | Jun Zhao <jun.zhao@intel.com> | 2018-10-22 19:09:47 +0800 |
commit | 18fce29d8f1ba73a736318519cd030946a9fec91 (patch) | |
tree | 6da3d10e3d7568eada94353595ba21b09459f426 | |
parent | cc82402ed3990853311fd133a3dc03692714d65c (diff) | |
download | ffmpeg-18fce29d8f1ba73a736318519cd030946a9fec91.tar.gz |
lavf/vc1test: add rcv to vc1test demuxer extensions
rcv is commonly used as extension for vc1 test stream files.
Signed-off-by: Jun Zhao <jun.zhao@intel.com>
-rw-r--r-- | libavformat/vc1test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/vc1test.c b/libavformat/vc1test.c index 64a45cd3a7..d44570988b 100644 --- a/libavformat/vc1test.c +++ b/libavformat/vc1test.c @@ -122,5 +122,6 @@ AVInputFormat ff_vc1t_demuxer = { .read_probe = vc1t_probe, .read_header = vc1t_read_header, .read_packet = vc1t_read_packet, + .extensions = "rcv", .flags = AVFMT_GENERIC_INDEX, }; |