Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
0a665416
Commit
0a665416
authored
Oct 15, 2013
by
Jingning Han
Browse files
Fix a few indent format issues in buffer defs
Change-Id: Iac55891ac9e6f13718c9f822aa099b5ca491832a
parent
96222710
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c
View file @
0a665416
...
...
@@ -435,7 +435,7 @@ void vp9_convolve8_avg_dspr2(const uint8_t *src, ptrdiff_t src_stride,
filter_y
,
y_step_q4
,
w
,
intermediate_height
);
vp9_convolve8_avg_vert
(
temp
+
(
64
*
3
)
,
64
,
vp9_convolve8_avg_vert
(
temp
+
64
*
3
,
64
,
dst
,
dst_stride
,
filter_x
,
x_step_q4
,
filter_y
,
y_step_q4
,
...
...
vp9/common/x86/vp9_asm_stubs.c
View file @
0a665416
...
...
@@ -217,7 +217,7 @@ void vp9_convolve8_ssse3(const uint8_t *src, ptrdiff_t src_stride,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
assert
(
w
<=
64
);
assert
(
h
<=
64
);
...
...
@@ -238,7 +238,7 @@ void vp9_convolve8_avg_ssse3(const uint8_t *src, ptrdiff_t src_stride,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
assert
(
w
<=
64
);
assert
(
h
<=
64
);
...
...
@@ -428,7 +428,7 @@ void vp9_convolve8_sse2(const uint8_t *src, ptrdiff_t src_stride,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
assert
(
w
<=
64
);
assert
(
h
<=
64
);
...
...
@@ -449,7 +449,7 @@ void vp9_convolve8_avg_sse2(const uint8_t *src, ptrdiff_t src_stride,
const
int16_t
*
filter_x
,
int
x_step_q4
,
const
int16_t
*
filter_y
,
int
y_step_q4
,
int
w
,
int
h
)
{
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
DECLARE_ALIGNED_ARRAY
(
16
,
unsigned
char
,
fdata2
,
64
*
71
);
assert
(
w
<=
64
);
assert
(
h
<=
64
);
...
...
vp9/encoder/vp9_block.h
View file @
0a665416
...
...
@@ -55,8 +55,8 @@ typedef struct {
}
PICK_MODE_CONTEXT
;
struct
macroblock_plane
{
DECLARE_ALIGNED
(
16
,
int16_t
,
src_diff
[
64
*
64
]);
DECLARE_ALIGNED
(
16
,
int16_t
,
coeff
[
64
*
64
]);
DECLARE_ALIGNED
(
16
,
int16_t
,
src_diff
[
64
*
64
]);
DECLARE_ALIGNED
(
16
,
int16_t
,
coeff
[
64
*
64
]);
struct
buf_2d
src
;
// Quantizer setings
...
...
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