Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsn8887 <rsn8887@users.noreply.github.com>2015-12-17 02:08:23 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-12-17 19:50:42 +0300
commit02e9ba42eb36c587bf83ba3d38ff591a4df6ba8f (patch)
treee7faa1f31befe5b22a717c80d4cf584a962ade22 /libavformat
parent07a8fbaa553205b496b68a62cb7bf7a968d0281b (diff)
avformat/xmv: Add *.xmv to the recognized extensions for the XMV format.
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/xmv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/xmv.c b/libavformat/xmv.c
index 14d007a3e0..45e5ebcaf2 100644
--- a/libavformat/xmv.c
+++ b/libavformat/xmv.c
@@ -573,6 +573,7 @@ static int xmv_read_packet(AVFormatContext *s,
AVInputFormat ff_xmv_demuxer = {
.name = "xmv",
.long_name = NULL_IF_CONFIG_SMALL("Microsoft XMV"),
+ .extensions = "xmv",
.priv_data_size = sizeof(XMVDemuxContext),
.read_probe = xmv_probe,
.read_header = xmv_read_header,