Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
b72bc718
Commit
b72bc718
authored
Dec 07, 2017
by
Yushin Cho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused variables in blockd.h
Change-Id: I687453ab28d72412e49b4cc2676b70425b80848b
parent
6fc47e5f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
av1/common/blockd.h
av1/common/blockd.h
+0
-4
av1/common/onyxc_int.h
av1/common/onyxc_int.h
+0
-3
No files found.
av1/common/blockd.h
View file @
b72bc718
...
...
@@ -502,10 +502,6 @@ typedef struct macroblockd_plane {
#endif
uint8_t
*
color_index_map
;
// number of 4x4s in current block
uint16_t
n4_w
,
n4_h
;
// log2 of n4_w, n4_h
uint8_t
n4_wl
,
n4_hl
;
// block size in pixels
uint8_t
width
,
height
;
...
...
av1/common/onyxc_int.h
View file @
b72bc718
...
...
@@ -795,9 +795,6 @@ static INLINE int calc_mi_size(int len) {
static
INLINE
void
set_plane_n4
(
MACROBLOCKD
*
const
xd
,
int
bw
,
int
bh
)
{
int
i
;
for
(
i
=
0
;
i
<
MAX_MB_PLANE
;
i
++
)
{
xd
->
plane
[
i
].
n4_w
=
(
bw
<<
1
)
>>
xd
->
plane
[
i
].
subsampling_x
;
xd
->
plane
[
i
].
n4_h
=
(
bh
<<
1
)
>>
xd
->
plane
[
i
].
subsampling_y
;
xd
->
plane
[
i
].
width
=
(
bw
*
MI_SIZE
)
>>
xd
->
plane
[
i
].
subsampling_x
;
xd
->
plane
[
i
].
height
=
(
bh
*
MI_SIZE
)
>>
xd
->
plane
[
i
].
subsampling_y
;
...
...
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