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
0d680804
Commit
0d680804
authored
Aug 02, 2013
by
Yunqing Wang
Committed by
Gerrit Code Review
Aug 02, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Comment out 2 unused speed features"
parents
d91e9f4e
7965a6ea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_encodeframe.c
+1
-1
vp9/encoder/vp9_onyx_if.c
vp9/encoder/vp9_onyx_if.c
+4
-4
vp9/encoder/vp9_onyx_int.h
vp9/encoder/vp9_onyx_int.h
+2
-2
No files found.
vp9/encoder/vp9_encodeframe.c
View file @
0d680804
...
...
@@ -1671,7 +1671,7 @@ static void rd_pick_partition(VP9_COMP *cpi, TOKENEXTRA **tp, int mi_row,
}
}
if
(
!
cpi
->
sf
.
use
_max_partition_size
||
if
(
!
cpi
->
sf
.
auto_min
_max_partition_size
||
bsize
<=
cpi
->
sf
.
max_partition_size
)
{
int
larger_is_better
=
0
;
// PARTITION_NONE
...
...
vp9/encoder/vp9_onyx_if.c
View file @
0d680804
...
...
@@ -736,9 +736,9 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
sf
->
auto_min_max_partition_size
=
0
;
sf
->
auto_min_max_partition_interval
=
0
;
sf
->
auto_min_max_partition_count
=
0
;
sf
->
use_max_partition_size
=
0
;
//
sf->use_max_partition_size = 0;
sf
->
max_partition_size
=
BLOCK_64X64
;
sf
->
use_min_partition_size
=
0
;
//
sf->use_min_partition_size = 0;
sf
->
min_partition_size
=
BLOCK_4X4
;
sf
->
adjust_partitioning_from_last_frame
=
0
;
sf
->
last_partitioning_redo_frequency
=
4
;
...
...
@@ -797,8 +797,8 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
sf
->
auto_mv_step_size
=
1
;
sf
->
auto_min_max_partition_size
=
1
;
sf
->
use_max_partition_size
=
1
;
sf
->
use_min_partition_size
=
1
;
//
sf->use_max_partition_size = 1;
//
sf->use_min_partition_size = 1;
sf
->
auto_min_max_partition_interval
=
1
;
}
if
(
speed
==
2
)
{
...
...
vp9/encoder/vp9_onyx_int.h
View file @
0d680804
...
...
@@ -261,10 +261,10 @@ typedef struct {
int
auto_min_max_partition_size
;
int
auto_min_max_partition_interval
;
int
auto_min_max_partition_count
;
int
use_min_partition_size
;
BLOCK_SIZE_TYPE
min_partition_size
;
int
use_max_partition_size
;
BLOCK_SIZE_TYPE
max_partition_size
;
// int use_min_partition_size; // not used in code
// int use_max_partition_size;
int
adjust_partitioning_from_last_frame
;
int
last_partitioning_redo_frequency
;
int
disable_splitmv
;
...
...
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