Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
bf187d1b
Commit
bf187d1b
authored
11 years ago
by
Jingning Han
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Fix a few indent format issues in buffer defs"
parents
fd1cd89d
0a665416
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c
+1
-1
1 addition, 1 deletion
vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c
vp9/common/x86/vp9_asm_stubs.c
+4
-4
4 additions, 4 deletions
vp9/common/x86/vp9_asm_stubs.c
vp9/encoder/vp9_block.h
+2
-2
2 additions, 2 deletions
vp9/encoder/vp9_block.h
with
7 additions
and
7 deletions
vp9/common/mips/dspr2/vp9_convolve8_avg_dspr2.c
+
1
−
1
View file @
bf187d1b
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
vp9/common/x86/vp9_asm_stubs.c
+
4
−
4
View file @
bf187d1b
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_block.h
+
2
−
2
View file @
bf187d1b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment