diff options
author | rsn8887 | 2015-12-16 17:08:23 -0600 |
---|---|---|
committer | Michael Niedermayer | 2015-12-17 17:50:42 +0100 |
commit | 02e9ba42eb36c587bf83ba3d38ff591a4df6ba8f (patch) | |
tree | e7faa1f31befe5b22a717c80d4cf584a962ade22 /libavformat/xmv.c | |
parent | 07a8fbaa553205b496b68a62cb7bf7a968d0281b (diff) |
avformat/xmv: Add *.xmv to the recognized extensions for the XMV format.
Diffstat (limited to 'libavformat/xmv.c')
-rw-r--r-- | libavformat/xmv.c | 1 |
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, |