Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
c5b70370
Commit
c5b70370
authored
Jun 29, 2012
by
Christian Duvivier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings.
Change-Id: I6dd27a0ea661e6f10a55d7841021b66ae4fc72ae
parent
e44ee38a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
vp8/encoder/modecosts.c
vp8/encoder/modecosts.c
+1
-1
vp8/encoder/rdopt.c
vp8/encoder/rdopt.c
+4
-1
No files found.
vp8/encoder/modecosts.c
View file @
c5b70370
...
...
@@ -54,7 +54,7 @@ void vp8_init_mode_costs(VP8_COMP *c)
x
->
fc
.
uv_mode_prob
[
VP8_YMODES
-
1
],
vp8_uv_mode_tree
);
vp8_cost_tokens
(
c
->
mb
.
intra_uv_mode_cost
[
0
],
x
->
kf_uv_mode_prob
[
VP8_YMODES
-
1
],
vp8_uv_mode_tree
);
vp8_cost_tokens
(
c
->
mb
.
i8x8_mode_costs
,
vp8_cost_tokens
(
(
int
*
)
c
->
mb
.
i8x8_mode_costs
,
x
->
fc
.
i8x8_mode_prob
,
vp8_i8x8_mode_tree
);
}
vp8/encoder/rdopt.c
View file @
c5b70370
...
...
@@ -2811,7 +2811,9 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int
int
best_comp_rd
=
INT_MAX
;
int
best_single_rd
=
INT_MAX
;
int
best_hybrid_rd
=
INT_MAX
;
#if CONFIG_PRED_FILTER
int
best_overall_rd
=
INT_MAX
;
#endif
int
rate2
,
distortion2
;
int
uv_intra_rate
,
uv_intra_distortion
,
uv_intra_rate_tokenonly
;
int
uv_intra_skippable
=
0
;
...
...
@@ -2820,8 +2822,9 @@ void vp8_rd_pick_inter_mode(VP8_COMP *cpi, MACROBLOCK *x, int recon_yoffset, int
int
rate_y
,
UNINITIALIZED_IS_SAFE
(
rate_uv
);
int
distortion_uv
;
int
best_yrd
=
INT_MAX
;
#if CONFIG_PRED_FILTER
int
best_filter_state
;
#endif
//int all_rds[MAX_MODES]; // Experimental debug code.
//int all_rates[MAX_MODES];
//int all_dist[MAX_MODES];
...
...
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