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
2f9815dd
Commit
2f9815dd
authored
Mar 09, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue1962 EVO detection
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
512f973e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mpeg.c
libavformat/mpeg.c
+2
-1
No files found.
libavformat/mpeg.c
View file @
2f9815dd
...
...
@@ -71,6 +71,7 @@ static int mpegps_probe(AVProbeData *p)
// and audio streams
else
if
((
code
&
0xe0
)
==
AUDIO_ID
&&
pes
)
{
audio
++
;
i
+=
len
;}
else
if
(
code
==
PRIVATE_STREAM_1
&&
pes
)
{
priv1
++
;
i
+=
len
;}
else
if
(
code
==
0x1fd
&&
pes
)
vid
++
;
//VC1
else
if
((
code
&
0xf0
)
==
VIDEO_ID
&&
!
pes
)
invalid
++
;
else
if
((
code
&
0xe0
)
==
AUDIO_ID
&&
!
pes
)
invalid
++
;
...
...
@@ -78,7 +79,7 @@ static int mpegps_probe(AVProbeData *p)
}
}
if
(
vid
+
audio
>
invalid
)
/* invalid VDR files nd short PES streams */
if
(
vid
+
audio
>
invalid
+
1
)
/* invalid VDR files nd short PES streams */
score
=
AVPROBE_SCORE_MAX
/
4
;
//av_log(NULL, AV_LOG_ERROR, "%d %d %d %d %d %d len:%d\n", sys, priv1, pspack,vid, audio, invalid, p->buf_size);
...
...
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