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
6cfaccab
Commit
6cfaccab
authored
May 31, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
probetest: allow specifying parameters on the command line
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
76170f53
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
probetest.c
tools/probetest.c
+10
-3
No files found.
tools/probetest.c
View file @
6cfaccab
...
@@ -49,12 +49,19 @@ static void probe(AVProbeData *pd, int type, int p, int size)
...
@@ -49,12 +49,19 @@ static void probe(AVProbeData *pd, int type, int p, int size)
}
}
}
}
int
main
(
void
)
int
main
(
int
argc
,
char
**
argv
)
{
{
unsigned
int
p
,
i
,
type
,
size
,
retry
;
unsigned
int
p
,
i
,
type
,
size
,
retry
;
AVProbeData
pd
;
AVProbeData
pd
;
AVLFG
state
;
AVLFG
state
;
PutBitContext
pb
;
PutBitContext
pb
;
int
retry_count
=
4097
;
int
max_size
=
65537
;
if
(
argc
>=
2
)
retry_count
=
atoi
(
argv
[
1
]);
if
(
argc
>=
3
)
max_size
=
atoi
(
argv
[
2
]);
avcodec_register_all
();
avcodec_register_all
();
av_register_all
();
av_register_all
();
...
@@ -62,14 +69,14 @@ int main(void)
...
@@ -62,14 +69,14 @@ int main(void)
av_lfg_init
(
&
state
,
0xdeadbeef
);
av_lfg_init
(
&
state
,
0xdeadbeef
);
pd
.
buf
=
NULL
;
pd
.
buf
=
NULL
;
for
(
size
=
1
;
size
<
65537
;
size
*=
2
)
{
for
(
size
=
1
;
size
<
max_size
;
size
*=
2
)
{
pd
.
buf_size
=
size
;
pd
.
buf_size
=
size
;
pd
.
buf
=
av_realloc
(
pd
.
buf
,
size
+
AVPROBE_PADDING_SIZE
);
pd
.
buf
=
av_realloc
(
pd
.
buf
,
size
+
AVPROBE_PADDING_SIZE
);
pd
.
filename
=
""
;
pd
.
filename
=
""
;
fprintf
(
stderr
,
"testing size=%d
\n
"
,
size
);
fprintf
(
stderr
,
"testing size=%d
\n
"
,
size
);
for
(
retry
=
0
;
retry
<
4097
;
retry
+=
FFMAX
(
size
,
32
))
{
for
(
retry
=
0
;
retry
<
retry_count
;
retry
+=
FFMAX
(
size
,
32
))
{
for
(
type
=
0
;
type
<
4
;
type
++
)
{
for
(
type
=
0
;
type
<
4
;
type
++
)
{
for
(
p
=
0
;
p
<
4096
;
p
++
)
{
for
(
p
=
0
;
p
<
4096
;
p
++
)
{
unsigned
hist
=
0
;
unsigned
hist
=
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