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
2806ea91
Commit
2806ea91
authored
Jul 14, 2014
by
Jingning Han
Committed by
Gerrit Code Review
Jul 14, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Fix a potential invalid memory access in non-RD coding flow"
parents
832e4f3c
b957439c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
test/cpu_speed_test.cc
test/cpu_speed_test.cc
+1
-1
vp9/encoder/vp9_pickmode.c
vp9/encoder/vp9_pickmode.c
+1
-1
vp9/encoder/vp9_speed_features.c
vp9/encoder/vp9_speed_features.c
+1
-0
No files found.
test/cpu_speed_test.cc
View file @
2806ea91
...
...
@@ -139,5 +139,5 @@ VP9_INSTANTIATE_TEST_CASE(
CpuSpeedTest
,
::
testing
::
Values
(
::
libvpx_test
::
kTwoPassGood
,
::
libvpx_test
::
kOnePassGood
,
::
libvpx_test
::
kRealTime
),
::
testing
::
Range
(
0
,
8
));
::
testing
::
Range
(
0
,
9
));
}
// namespace
vp9/encoder/vp9_pickmode.c
View file @
2806ea91
...
...
@@ -679,7 +679,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
int
rate2
=
0
;
int64_t
dist2
=
0
;
const
int
dst_stride
=
pd
->
dst
.
stride
;
const
int
dst_stride
=
cpi
->
sf
.
reuse_inter_pred_sby
?
bw
:
pd
->
dst
.
stride
;
const
int
src_stride
=
p
->
src
.
stride
;
int
block_idx
=
0
;
...
...
vp9/encoder/vp9_speed_features.c
View file @
2806ea91
...
...
@@ -296,6 +296,7 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
}
if
(
speed
>=
8
)
{
int
i
;
sf
->
max_intra_bsize
=
BLOCK_32X32
;
for
(
i
=
0
;
i
<
BLOCK_SIZES
;
++
i
)
sf
->
inter_mode_mask
[
i
]
=
INTER_NEAREST
;
}
...
...
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