Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
9c6fafb2
Commit
9c6fafb2
authored
Jul 29, 2013
by
John Koleszar
Committed by
Gerrit Code Review
Jul 29, 2013
Browse files
Merge "Remove unnecessary 64 byte alignment"
parents
828119d6
a31effca
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_entropy.c
View file @
9c6fafb2
...
...
@@ -73,7 +73,7 @@ DECLARE_ALIGNED(16, const int16_t, vp9_row_scan_4x4[16]) = {
13
,
11
,
14
,
15
,
};
DECLARE_ALIGNED
(
6
4
,
const
int16_t
,
vp9_default_scan_8x8
[
64
])
=
{
DECLARE_ALIGNED
(
1
6
,
const
int16_t
,
vp9_default_scan_8x8
[
64
])
=
{
0
,
8
,
1
,
16
,
9
,
2
,
17
,
24
,
10
,
3
,
18
,
25
,
32
,
11
,
4
,
26
,
33
,
19
,
40
,
12
,
34
,
27
,
5
,
41
,
...
...
vp9/common/vp9_entropy.h
View file @
9c6fafb2
...
...
@@ -101,7 +101,7 @@ extern DECLARE_ALIGNED(16, const int16_t, vp9_default_scan_4x4[16]);
extern
DECLARE_ALIGNED
(
16
,
const
int16_t
,
vp9_col_scan_4x4
[
16
]);
extern
DECLARE_ALIGNED
(
16
,
const
int16_t
,
vp9_row_scan_4x4
[
16
]);
extern
DECLARE_ALIGNED
(
6
4
,
const
int16_t
,
vp9_default_scan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
1
6
,
const
int16_t
,
vp9_default_scan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
16
,
const
int16_t
,
vp9_col_scan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
16
,
const
int16_t
,
vp9_row_scan_8x8
[
64
]);
...
...
@@ -118,7 +118,7 @@ extern DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_4x4[16]);
extern
DECLARE_ALIGNED
(
16
,
int16_t
,
vp9_col_iscan_4x4
[
16
]);
extern
DECLARE_ALIGNED
(
16
,
int16_t
,
vp9_row_iscan_4x4
[
16
]);
extern
DECLARE_ALIGNED
(
6
4
,
int16_t
,
vp9_default_iscan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
1
6
,
int16_t
,
vp9_default_iscan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
16
,
int16_t
,
vp9_col_iscan_8x8
[
64
]);
extern
DECLARE_ALIGNED
(
16
,
int16_t
,
vp9_row_iscan_8x8
[
64
]);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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