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
34dbdcfc
Commit
34dbdcfc
authored
Apr 29, 2018
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/m4vdec: Fix detection of raw MPEG-4 ES Studio
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
cae6f806
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
m4vdec.c
libavformat/m4vdec.c
+11
-0
No files found.
libavformat/m4vdec.c
View file @
34dbdcfc
...
...
@@ -24,11 +24,14 @@
#define VISUAL_OBJECT_START_CODE 0x000001b5
#define VOP_START_CODE 0x000001b6
#define SLICE_STARTCODE 0x1B7
#define EXT_STARTCODE 0x1B8
static
int
mpeg4video_probe
(
AVProbeData
*
probe_packet
)
{
uint32_t
temp_buffer
=
-
1
;
int
VO
=
0
,
VOL
=
0
,
VOP
=
0
,
VISO
=
0
,
res
=
0
;
int
res_main
=
0
;
int
i
;
for
(
i
=
0
;
i
<
probe_packet
->
buf_size
;
i
++
)
{
...
...
@@ -46,11 +49,19 @@ static int mpeg4video_probe(AVProbeData *probe_packet)
VO
++
;
else
if
(
temp_buffer
>=
0x120
&&
temp_buffer
<
0x130
)
VOL
++
;
else
if
(
temp_buffer
==
SLICE_STARTCODE
||
temp_buffer
==
EXT_STARTCODE
)
res_main
++
;
else
if
(
!
(
0x1AF
<
temp_buffer
&&
temp_buffer
<
0x1B7
)
&&
!
(
0x1B9
<
temp_buffer
&&
temp_buffer
<
0x1C4
))
res
++
;
}
// res_main repesents the reserved codes within the "main" profile, they are
// added to the reserved ones if it appears that this is a "main" profile
// stream
if
(
res_main
&&
2
*
res_main
<
VOP
)
res
+=
res_main
;
if
(
VOP
>=
VISO
&&
VOP
>=
VOL
&&
VO
>=
VOL
&&
VOL
>
0
&&
res
==
0
)
return
VOP
+
VO
>
4
?
AVPROBE_SCORE_EXTENSION
:
AVPROBE_SCORE_EXTENSION
/
2
;
...
...
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