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
dfc571ff
Commit
dfc571ff
authored
Sep 25, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bit: rewrite probe
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
21922dc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
12 deletions
+10
-12
bit.c
libavformat/bit.c
+10
-12
No files found.
libavformat/bit.c
View file @
dfc571ff
...
...
@@ -10,19 +10,17 @@
static
int
probe
(
AVProbeData
*
p
)
{
int
i
;
i
=
AV_RL16
(
&
p
->
buf
[
0
]);
if
(
i
!=
SYNC_WORD
)
return
0
;
switch
(
AV_RL16
(
&
p
->
buf
[
2
]))
{
case
0x40
:
case
0x50
:
return
AVPROBE_SCORE_MAX
/
2
;
default:
return
0
;
int
i
,
j
;
for
(
i
=
0
;
i
+
3
<
p
->
buf_size
&&
i
<
10
*
0x50
;
){
if
(
AV_RL16
(
&
p
->
buf
[
0
])
!=
SYNC_WORD
)
return
0
;
j
=
AV_RL16
(
&
p
->
buf
[
2
]);
if
(
j
!=
0x40
&&
j
!=
0x50
)
return
0
;
i
+=
j
;
}
return
AVPROBE_SCORE_MAX
/
2
;
}
static
int
read_header
(
AVFormatContext
*
s
,
AVFormatParameters
*
ap
)
...
...
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