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
96be0a50
Commit
96be0a50
authored
Jan 10, 2014
by
Dmitry Kovalev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing mi_height_log2_lookup table.
Change-Id: I1f0ae2edc3a96b33c0494d165ae756a8feba6184
parent
21a0c1f3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
8 deletions
+1
-8
vp9/common/vp9_blockd.h
vp9/common/vp9_blockd.h
+0
-4
vp9/common/vp9_common_data.c
vp9/common/vp9_common_data.c
+0
-2
vp9/common/vp9_common_data.h
vp9/common/vp9_common_data.h
+0
-1
vp9/common/vp9_onyxc_int.h
vp9/common/vp9_onyxc_int.h
+1
-1
No files found.
vp9/common/vp9_blockd.h
View file @
96be0a50
...
...
@@ -115,10 +115,6 @@ static INLINE int mi_width_log2(BLOCK_SIZE sb_type) {
return
mi_width_log2_lookup
[
sb_type
];
}
static
INLINE
int
mi_height_log2
(
BLOCK_SIZE
sb_type
)
{
return
mi_height_log2_lookup
[
sb_type
];
}
// This structure now relates to 8x8 block regions.
typedef
struct
{
MB_PREDICTION_MODE
mode
,
uv_mode
;
...
...
vp9/common/vp9_common_data.c
View file @
96be0a50
...
...
@@ -26,8 +26,6 @@ const int mi_width_log2_lookup[BLOCK_SIZES] =
{
0
,
0
,
0
,
0
,
0
,
1
,
1
,
1
,
2
,
2
,
2
,
3
,
3
};
const
int
num_8x8_blocks_wide_lookup
[
BLOCK_SIZES
]
=
{
1
,
1
,
1
,
1
,
1
,
2
,
2
,
2
,
4
,
4
,
4
,
8
,
8
};
const
int
mi_height_log2_lookup
[
BLOCK_SIZES
]
=
{
0
,
0
,
0
,
0
,
1
,
0
,
1
,
2
,
1
,
2
,
3
,
2
,
3
};
const
int
num_8x8_blocks_high_lookup
[
BLOCK_SIZES
]
=
{
1
,
1
,
1
,
1
,
2
,
1
,
2
,
4
,
2
,
4
,
8
,
4
,
8
};
...
...
vp9/common/vp9_common_data.h
View file @
96be0a50
...
...
@@ -16,7 +16,6 @@
extern
const
int
b_width_log2_lookup
[
BLOCK_SIZES
];
extern
const
int
b_height_log2_lookup
[
BLOCK_SIZES
];
extern
const
int
mi_width_log2_lookup
[
BLOCK_SIZES
];
extern
const
int
mi_height_log2_lookup
[
BLOCK_SIZES
];
extern
const
int
num_8x8_blocks_wide_lookup
[
BLOCK_SIZES
];
extern
const
int
num_8x8_blocks_high_lookup
[
BLOCK_SIZES
];
extern
const
int
num_4x4_blocks_high_lookup
[
BLOCK_SIZES
];
...
...
vp9/common/vp9_onyxc_int.h
View file @
96be0a50
...
...
@@ -346,7 +346,7 @@ static INLINE int partition_plane_context(
const
int
bs
=
1
<<
bsl
;
int
above
=
0
,
left
=
0
,
i
;
assert
(
mi_width_log2
(
bsize
)
==
mi
_height_log2
(
bsize
));
assert
(
b_width_log2
(
bsize
)
==
b
_height_log2
(
bsize
));
assert
(
bsl
>=
0
);
for
(
i
=
0
;
i
<
bs
;
i
++
)
{
...
...
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