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
88a849c7
Commit
88a849c7
authored
May 01, 2016
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/mpegts: Return small probe score for very short transport streams.
Fixes Debian bug 823098.
parent
00ffbdfb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
mpegts.c
libavformat/mpegts.c
+9
-4
No files found.
libavformat/mpegts.c
View file @
88a849c7
...
...
@@ -2482,7 +2482,7 @@ static int mpegts_probe(AVProbeData *p)
#define CHECK_COUNT 10
#define CHECK_BLOCK 100
if
(
check_count
<
CHECK_COUNT
)
if
(
!
check_count
)
return
0
;
for
(
i
=
0
;
i
<
check_count
;
i
+=
CHECK_BLOCK
)
{
...
...
@@ -2500,10 +2500,15 @@ static int mpegts_probe(AVProbeData *p)
ff_dlog
(
0
,
"TS score: %d %d
\n
"
,
sumscore
,
maxscore
);
if
(
sumscore
>
6
)
return
AVPROBE_SCORE_MAX
+
sumscore
-
CHECK_COUNT
;
else
if
(
maxscore
>
6
)
return
AVPROBE_SCORE_MAX
/
2
+
sumscore
-
CHECK_COUNT
;
else
if
(
check_count
>=
CHECK_COUNT
&&
sumscore
>
6
)
{
return
AVPROBE_SCORE_MAX
+
sumscore
-
CHECK_COUNT
;
}
else
if
(
check_count
>=
CHECK_COUNT
&&
maxscore
>
6
)
{
return
AVPROBE_SCORE_MAX
/
2
+
sumscore
-
CHECK_COUNT
;
}
else
if
(
sumscore
>
6
)
{
return
2
;
}
else
{
return
0
;
}
}
/* return the 90kHz PCR and the extension for the 27MHz PCR. return
...
...
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