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
841c030f
Commit
841c030f
authored
Dec 13, 2017
by
Sebastien Alaiwan
Committed by
Fred BARBIER
Dec 14, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead globals, members and structs
Change-Id: Ic92db272a4cd2f507dc1c8d682030c801abf2793
parent
448ca408
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
12 deletions
+1
-12
av1/common/onyxc_int.h
av1/common/onyxc_int.h
+0
-4
av1/encoder/context_tree.h
av1/encoder/context_tree.h
+1
-5
av1/encoder/encoder.c
av1/encoder/encoder.c
+0
-3
No files found.
av1/common/onyxc_int.h
View file @
841c030f
...
...
@@ -344,10 +344,6 @@ typedef struct AV1Common {
qm_val_t
*
v_iqmatrix
[
MAX_SEGMENTS
][
TX_SIZES_ALL
];
// Encoder
qm_val_t
*
y_qmatrix
[
MAX_SEGMENTS
][
TX_SIZES_ALL
];
qm_val_t
*
u_qmatrix
[
MAX_SEGMENTS
][
TX_SIZES_ALL
];
qm_val_t
*
v_qmatrix
[
MAX_SEGMENTS
][
TX_SIZES_ALL
];
int
using_qmatrix
;
int
min_qmlevel
;
int
max_qmlevel
;
...
...
av1/encoder/context_tree.h
View file @
841c030f
...
...
@@ -77,11 +77,7 @@ typedef struct PC_TREE {
PICK_MODE_CONTEXT
horizontal4
[
4
];
PICK_MODE_CONTEXT
vertical4
[
4
];
#endif
// TODO(jingning): remove leaf_split[] when cb4x4 experiment flag is removed.
union
{
struct
PC_TREE
*
split
[
4
];
PICK_MODE_CONTEXT
*
leaf_split
[
4
];
};
struct
PC_TREE
*
split
[
4
];
}
PC_TREE
;
void
av1_setup_pc_tree
(
struct
AV1Common
*
cm
,
struct
ThreadData
*
td
);
...
...
av1/encoder/encoder.c
View file @
841c030f
...
...
@@ -91,9 +91,6 @@ FRAME_COUNTS aggregate_fc_per_type[FRAME_CONTEXTS];
// chosen.
// #define OUTPUT_YUV_REC
#ifdef OUTPUT_YUV_DENOISED
FILE
*
yuv_denoised_file
=
NULL
;
#endif
#ifdef OUTPUT_YUV_SKINMAP
FILE
*
yuv_skinmap_file
=
NULL
;
#endif
...
...
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