Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f1c4a54f
Commit
f1c4a54f
authored
Apr 01, 2014
by
Marc-Antoine Arnaud
Committed by
Vittorio Giovara
Apr 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add supported extension to avi and mov demuxers
parent
cba4e606
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
avidec.c
libavformat/avidec.c
+1
-0
mov.c
libavformat/mov.c
+1
-0
No files found.
libavformat/avidec.c
View file @
f1c4a54f
...
...
@@ -1525,6 +1525,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
,
...
...
libavformat/mov.c
View file @
f1c4a54f
...
...
@@ -3137,6 +3137,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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment