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
e15f6bc1
Commit
e15f6bc1
authored
10 years ago
by
Jingning Han
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Add const mark to const values in non-RD coding mode"
parents
56afb9c4
99e25ec4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp9/encoder/vp9_pickmode.c
+5
-5
5 additions, 5 deletions
vp9/encoder/vp9_pickmode.c
with
5 additions
and
5 deletions
vp9/encoder/vp9_pickmode.c
+
5
−
5
View file @
e15f6bc1
...
...
@@ -669,14 +669,14 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
if
(
!
x
->
skip
&&
best_rd
>
inter_mode_thresh
&&
bsize
<=
cpi
->
sf
.
max_intra_bsize
)
{
int
i
,
j
;
int
step
=
1
<<
mbmi
->
tx_size
;
int
width
=
num_4x4_blocks_wide_lookup
[
bsize
];
int
height
=
num_4x4_blocks_high_lookup
[
bsize
];
const
int
step
=
1
<<
mbmi
->
tx_size
;
const
int
width
=
num_4x4_blocks_wide_lookup
[
bsize
];
const
int
height
=
num_4x4_blocks_high_lookup
[
bsize
];
int
rate2
=
0
;
int64_t
dist2
=
0
;
int
dst_stride
=
pd
->
dst
.
stride
;
int
src_stride
=
p
->
src
.
stride
;
const
int
dst_stride
=
pd
->
dst
.
stride
;
const
int
src_stride
=
p
->
src
.
stride
;
int
block_idx
=
0
;
for
(
this_mode
=
DC_PRED
;
this_mode
<=
DC_PRED
;
++
this_mode
)
{
...
...
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