Commit 61b3b331 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'f1c4a54f'

* commit 'f1c4a54f':
  lavf: add supported extension to avi and mov demuxers
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 45ba9d85 f1c4a54f
......@@ -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,
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment