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
e75e249b
Commit
e75e249b
authored
12 years ago
by
Scott LaVarnway
Committed by
Gerrit Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Removed unused dr from VP8D_COMP"
parents
2a96d6b0
0d3f31e8
No related branches found
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
-33
0 additions, 33 deletions
vp8/decoder/onyxd_if.c
vp8/decoder/onyxd_int.h
+0
-9
0 additions, 9 deletions
vp8/decoder/onyxd_int.h
with
0 additions
and
42 deletions
vp8/decoder/onyxd_if.c
+
0
−
33
View file @
e75e249b
...
...
@@ -502,39 +502,6 @@ int vp8dx_receive_compressed_data(VP8D_COMP *pbi, unsigned long size, const unsi
pbi
->
last_time_stamp
=
time_stamp
;
pbi
->
num_fragments
=
0
;
#if 0
{
int i;
int64_t earliest_time = pbi->dr[0].time_stamp;
int64_t latest_time = pbi->dr[0].time_stamp;
int64_t time_diff = 0;
int bytes = 0;
pbi->dr[pbi->common.current_video_frame&0xf].size = pbi->bc.pos + pbi->bc2.pos + 4;;
pbi->dr[pbi->common.current_video_frame&0xf].time_stamp = time_stamp;
for (i = 0; i < 16; i++)
{
bytes += pbi->dr[i].size;
if (pbi->dr[i].time_stamp < earliest_time)
earliest_time = pbi->dr[i].time_stamp;
if (pbi->dr[i].time_stamp > latest_time)
latest_time = pbi->dr[i].time_stamp;
}
time_diff = latest_time - earliest_time;
if (time_diff > 0)
{
pbi->common.bitrate = 80000.00 * bytes / time_diff ;
pbi->common.framerate = 160000000.00 / time_diff ;
}
}
#endif
#if HAVE_NEON
#if CONFIG_RUNTIME_CPU_DETECT
...
...
This diff is collapsed.
Click to expand it.
vp8/decoder/onyxd_int.h
+
0
−
9
View file @
e75e249b
...
...
@@ -33,13 +33,6 @@ typedef struct
MACROBLOCKD
mbd
;
}
MB_ROW_DEC
;
typedef
struct
{
int64_t
time_stamp
;
int
size
;
}
DATARATE
;
typedef
struct
VP8D_COMP
{
DECLARE_ALIGNED
(
16
,
MACROBLOCKD
,
mb
);
...
...
@@ -88,8 +81,6 @@ typedef struct VP8D_COMP
int64_t
last_time_stamp
;
int
ready_for_new_data
;
DATARATE
dr
[
16
];
vp8_prob
prob_intra
;
vp8_prob
prob_last
;
vp8_prob
prob_gf
;
...
...
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