Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
e1a8b6c8
Commit
e1a8b6c8
authored
13 years ago
by
Scott LaVarnway
Committed by
John Koleszar
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused timers
Change-Id: I209803b9dbed2b2f6d02258fd7a3963a6645f4ab
parent
8fcb801d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp8/decoder/onyxd_if.c
+0
-15
0 additions, 15 deletions
vp8/decoder/onyxd_if.c
vp8/decoder/onyxd_int.h
+0
-6
0 additions, 6 deletions
vp8/decoder/onyxd_int.h
with
0 additions
and
21 deletions
vp8/decoder/onyxd_if.c
+
0
−
15
View file @
e1a8b6c8
...
...
@@ -76,7 +76,6 @@ VP8D_PTR vp8dx_create_decompressor(VP8D_CONFIG *oxcf)
pbi
->
common
.
current_video_frame
=
0
;
pbi
->
ready_for_new_data
=
1
;
pbi
->
CPUFreq
=
0
;
/*vp8_get_processor_freq();*/
#if CONFIG_MULTITHREAD
pbi
->
max_threads
=
oxcf
->
max_threads
;
vp8_decoder_create_threads
(
pbi
);
...
...
@@ -252,7 +251,6 @@ int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsign
VP8D_COMP
*
pbi
=
(
VP8D_COMP
*
)
ptr
;
VP8_COMMON
*
cm
=
&
pbi
->
common
;
int
retcode
=
0
;
struct
vpx_usec_timer
timer
;
/*if(pbi->ready_for_new_data == 0)
return -1;*/
...
...
@@ -317,8 +315,6 @@ int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsign
pbi
->
common
.
error
.
setjmp
=
1
;
vpx_usec_timer_start
(
&
timer
);
/*cm->current_video_frame++;*/
pbi
->
Source
=
source
;
pbi
->
source_sz
=
size
;
...
...
@@ -379,15 +375,9 @@ int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsign
if
(
pbi
->
common
.
filter_level
)
{
struct
vpx_usec_timer
lpftimer
;
vpx_usec_timer_start
(
&
lpftimer
);
/* Apply the loop filter if appropriate. */
vp8_loop_filter_frame
(
cm
,
&
pbi
->
mb
,
cm
->
filter_level
);
vpx_usec_timer_mark
(
&
lpftimer
);
pbi
->
time_loop_filtering
+=
vpx_usec_timer_elapsed
(
&
lpftimer
);
cm
->
last_frame_type
=
cm
->
frame_type
;
cm
->
last_filter_type
=
cm
->
filter_type
;
cm
->
last_sharpness_level
=
cm
->
sharpness_level
;
...
...
@@ -398,11 +388,6 @@ int vp8dx_receive_compressed_data(VP8D_PTR ptr, unsigned long size, const unsign
vp8_clear_system_state
();
vpx_usec_timer_mark
(
&
timer
);
pbi
->
decode_microseconds
=
vpx_usec_timer_elapsed
(
&
timer
);
pbi
->
time_decoding
+=
pbi
->
decode_microseconds
;
/*vp8_print_modes_and_motion_vectors( cm->mi, cm->mb_rows,cm->mb_cols, cm->current_video_frame);*/
if
(
cm
->
show_frame
)
...
...
This diff is collapsed.
Click to expand it.
vp8/decoder/onyxd_int.h
+
0
−
6
View file @
e1a8b6c8
...
...
@@ -81,12 +81,6 @@ typedef struct VP8Decompressor
const
unsigned
char
*
Source
;
unsigned
int
source_sz
;
unsigned
int
CPUFreq
;
unsigned
int
decode_microseconds
;
unsigned
int
time_decoding
;
unsigned
int
time_loop_filtering
;
#if CONFIG_MULTITHREAD
/* variable for threading */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment