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
4ff46af0
Commit
4ff46af0
authored
Jan 30, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264-test: cleanup: drop timer invocations, commented out code and other cruft
parent
3856a2aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
h264.c
libavcodec/h264.c
+0
-15
No files found.
libavcodec/h264.c
View file @
4ff46af0
...
...
@@ -4101,7 +4101,6 @@ static inline void fill_mb_avail(H264Context *h){
#ifdef TEST
#undef printf
#undef random
#define COUNT 8000
#define SIZE (COUNT*40)
int
main
(
void
){
...
...
@@ -4113,9 +4112,7 @@ int main(void){
init_put_bits
(
&
pb
,
temp
,
SIZE
);
printf
(
"testing unsigned exp golomb
\n
"
);
for
(
i
=
0
;
i
<
COUNT
;
i
++
){
START_TIMER
set_ue_golomb
(
&
pb
,
i
);
STOP_TIMER
(
"set_ue_golomb"
);
}
flush_put_bits
(
&
pb
);
...
...
@@ -4123,22 +4120,16 @@ int main(void){
for
(
i
=
0
;
i
<
COUNT
;
i
++
){
int
j
,
s
=
show_bits
(
&
gb
,
24
);
START_TIMER
j
=
get_ue_golomb
(
&
gb
);
if
(
j
!=
i
){
printf
(
"mismatch! at %d (%d should be %d) bits:%6X
\n
"
,
i
,
j
,
i
,
s
);
// return -1;
}
STOP_TIMER
(
"get_ue_golomb"
);
}
init_put_bits
(
&
pb
,
temp
,
SIZE
);
printf
(
"testing signed exp golomb
\n
"
);
for
(
i
=
0
;
i
<
COUNT
;
i
++
){
START_TIMER
set_se_golomb
(
&
pb
,
i
-
COUNT
/
2
);
STOP_TIMER
(
"set_se_golomb"
);
}
flush_put_bits
(
&
pb
);
...
...
@@ -4146,18 +4137,12 @@ int main(void){
for
(
i
=
0
;
i
<
COUNT
;
i
++
){
int
j
,
s
=
show_bits
(
&
gb
,
24
);
START_TIMER
j
=
get_se_golomb
(
&
gb
);
if
(
j
!=
i
-
COUNT
/
2
){
printf
(
"mismatch! at %d (%d should be %d) bits:%6X
\n
"
,
i
,
j
,
i
,
s
);
// return -1;
}
STOP_TIMER
(
"get_se_golomb"
);
}
printf
(
"Testing RBSP
\n
"
);
return
0
;
}
#endif
/* TEST */
...
...
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