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
4620affa
Commit
4620affa
authored
Sep 23, 2014
by
Gabriel Dume
Committed by
Diego Biurrun
Sep 25, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m4vdec: K&R formatting cosmetics
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
86a36108
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
12 deletions
+18
-12
m4vdec.c
libavformat/m4vdec.c
+18
-12
No files found.
libavformat/m4vdec.c
View file @
4620affa
...
...
@@ -27,26 +27,32 @@
static
int
mpeg4video_probe
(
AVProbeData
*
probe_packet
)
{
uint32_t
temp_buffer
=
-
1
;
int
VO
=
0
,
VOL
=
0
,
VOP
=
0
,
VISO
=
0
,
res
=
0
;
uint32_t
temp_buffer
=
-
1
;
int
VO
=
0
,
VOL
=
0
,
VOP
=
0
,
VISO
=
0
,
res
=
0
;
int
i
;
for
(
i
=
0
;
i
<
probe_packet
->
buf_size
;
i
++
)
{
temp_buffer
=
(
temp_buffer
<<
8
)
+
probe_packet
->
buf
[
i
];
for
(
i
=
0
;
i
<
probe_packet
->
buf_size
;
i
++
)
{
temp_buffer
=
(
temp_buffer
<<
8
)
+
probe_packet
->
buf
[
i
];
if
((
temp_buffer
&
0xffffff00
)
!=
0x100
)
continue
;
if
(
temp_buffer
==
VOP_START_CODE
)
VOP
++
;
else
if
(
temp_buffer
==
VISUAL_OBJECT_START_CODE
)
VISO
++
;
else
if
(
temp_buffer
<
0x120
)
VO
++
;
else
if
(
temp_buffer
<
0x130
)
VOL
++
;
else
if
(
!
(
0x1AF
<
temp_buffer
&&
temp_buffer
<
0x1B7
)
&&
!
(
0x1B9
<
temp_buffer
&&
temp_buffer
<
0x1C4
))
res
++
;
if
(
temp_buffer
==
VOP_START_CODE
)
VOP
++
;
else
if
(
temp_buffer
==
VISUAL_OBJECT_START_CODE
)
VISO
++
;
else
if
(
temp_buffer
<
0x120
)
VO
++
;
else
if
(
temp_buffer
<
0x130
)
VOL
++
;
else
if
(
!
(
0x1AF
<
temp_buffer
&&
temp_buffer
<
0x1B7
)
&&
!
(
0x1B9
<
temp_buffer
&&
temp_buffer
<
0x1C4
))
res
++
;
}
if
(
VOP
>=
VISO
&&
VOP
>=
VOL
&&
VO
>=
VOL
&&
VOL
>
0
&&
res
==
0
)
if
(
VOP
>=
VISO
&&
VOP
>=
VOL
&&
VO
>=
VOL
&&
VOL
>
0
&&
res
==
0
)
return
AVPROBE_SCORE_EXTENSION
;
return
0
;
}
FF_DEF_RAWVIDEO_DEMUXER
(
m4v
,
"raw MPEG-4 video"
,
mpeg4video_probe
,
"m4v"
,
AV_CODEC_ID_MPEG4
)
FF_DEF_RAWVIDEO_DEMUXER
(
m4v
,
"raw MPEG-4 video"
,
mpeg4video_probe
,
"m4v"
,
AV_CODEC_ID_MPEG4
)
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