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
f19ae9ea
Commit
f19ae9ea
authored
Oct 09, 2009
by
Daniel Verkamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stricter TMV probe
Originally committed as revision 20194 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
0359289d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
tmv.c
libavformat/tmv.c
+11
-2
No files found.
libavformat/tmv.c
View file @
f19ae9ea
...
@@ -43,10 +43,19 @@ typedef struct TMVContext {
...
@@ -43,10 +43,19 @@ typedef struct TMVContext {
unsigned
stream_index
;
unsigned
stream_index
;
}
TMVContext
;
}
TMVContext
;
#define PROBE_MIN_SAMPLE_RATE 5000
#define PROBE_MAX_FPS 120
#define PROBE_MIN_AUDIO_SIZE (PROBE_MIN_SAMPLE_RATE / PROBE_MAX_FPS)
static
int
tmv_probe
(
AVProbeData
*
p
)
static
int
tmv_probe
(
AVProbeData
*
p
)
{
{
if
(
AV_RL32
(
p
->
buf
)
==
TMV_TAG
)
if
(
AV_RL32
(
p
->
buf
)
==
TMV_TAG
&&
return
AVPROBE_SCORE_MAX
;
AV_RL16
(
p
->
buf
+
4
)
>=
PROBE_MIN_SAMPLE_RATE
&&
AV_RL16
(
p
->
buf
+
6
)
>=
PROBE_MIN_AUDIO_SIZE
&&
!
p
->
buf
[
8
]
&&
// compression method
p
->
buf
[
9
]
&&
// char cols
p
->
buf
[
10
])
// char rows
return
AVPROBE_SCORE_MAX
/
(
p
->
buf
[
9
]
==
40
&&
p
->
buf
[
10
]
==
25
)
?
1
:
4
;
return
0
;
return
0
;
}
}
...
...
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