summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-02 03:14:53 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-02 03:15:19 +0200
commit61b3b3315c465ca7d74d3e95a881470642afddbc (patch)
tree5abaf8307c5de58a870877d8bdb11aa1cb0f6594 /libavformat
parent45ba9d8545829e9c3df1b57de0b00256d8eddaac (diff)
parentf1c4a54f6ecbf77a29aaaee09ca70c5468d0c509 (diff)
Merge commit 'f1c4a54f6ecbf77a29aaaee09ca70c5468d0c509'
* commit 'f1c4a54f6ecbf77a29aaaee09ca70c5468d0c509': lavf: add supported extension to avi and mov demuxers Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/avidec.c1
-rw-r--r--libavformat/mov.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 0a837d4e5a..52d0425507 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -1793,6 +1793,7 @@ AVInputFormat ff_avi_demuxer = {
.name = "avi",
.long_name = NULL_IF_CONFIG_SMALL("AVI (Audio Video Interleaved)"),
.priv_data_size = sizeof(AVIContext),
+ .extensions = "avi",
.read_probe = avi_probe,
.read_header = avi_read_header,
.read_packet = avi_read_packet,
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e025133266..c711be1609 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -3709,6 +3709,7 @@ AVInputFormat ff_mov_demuxer = {
.name = "mov,mp4,m4a,3gp,3g2,mj2",
.long_name = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
.priv_data_size = sizeof(MOVContext),
+ .extensions = "mov,mp4,m4a,3gp,3g2,mj2",
.read_probe = mov_probe,
.read_header = mov_read_header,
.read_packet = mov_read_packet,