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
53ae32d3
Commit
53ae32d3
authored
Nov 29, 2012
by
Peter Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iff demuxer: support RGB8 and RGBN
parent
67c1b5b0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
iff.c
libavformat/iff.c
+5
-1
No files found.
libavformat/iff.c
View file @
53ae32d3
...
...
@@ -53,6 +53,8 @@
#define ID_CMAP MKTAG('C','M','A','P')
#define ID_ACBM MKTAG('A','C','B','M')
#define ID_DEEP MKTAG('D','E','E','P')
#define ID_RGB8 MKTAG('R','G','B','8')
#define ID_RGBN MKTAG('R','G','B','N')
#define ID_FORM MKTAG('F','O','R','M')
#define ID_ANNO MKTAG('A','N','N','O')
...
...
@@ -136,7 +138,9 @@ static int iff_probe(AVProbeData *p)
AV_RL32
(
d
+
8
)
==
ID_PBM
||
AV_RL32
(
d
+
8
)
==
ID_ACBM
||
AV_RL32
(
d
+
8
)
==
ID_DEEP
||
AV_RL32
(
d
+
8
)
==
ID_ILBM
)
)
AV_RL32
(
d
+
8
)
==
ID_ILBM
||
AV_RL32
(
d
+
8
)
==
ID_RGB8
||
AV_RL32
(
d
+
8
)
==
ID_RGBN
)
)
return
AVPROBE_SCORE_MAX
;
return
0
;
}
...
...
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