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
8e8fb276
Commit
8e8fb276
authored
Aug 27, 2012
by
Ronald S. Bultje
Browse files
Disable 16x16 temp buffer for superblocks.
Change-Id: I3d585bae446c16fcf7a39d72c1bcd6468a7bb1a1
parent
0256398c
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp8/common/blockd.h
View file @
8e8fb276
...
...
@@ -435,7 +435,7 @@ typedef struct MacroBlockD {
int
corrupted
;
#if ARCH_X86 || ARCH_X86_64
#if
!CONFIG_SUPERBLOCKS && (
ARCH_X86 || ARCH_X86_64
)
/* This is an intermediate buffer currently used in sub-pixel motion search
* to keep a copy of the reference area. This buffer can be used for other
* purpose.
...
...
vp8/encoder/mcomp.c
View file @
8e8fb276
...
...
@@ -456,7 +456,7 @@ int vp8_find_best_sub_pixel_step(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
int
y_stride
;
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
#if ARCH_X86 || ARCH_X86_64
#if
!CONFIG_SUPERBLOCKS && (
ARCH_X86 || ARCH_X86_64
)
unsigned
char
*
y0
=
*
(
d
->
base_pre
)
+
d
->
pre
+
(
bestmv
->
as_mv
.
row
)
*
d
->
pre_stride
+
bestmv
->
as_mv
.
col
;
unsigned
char
*
y
;
...
...
@@ -923,7 +923,7 @@ int vp8_find_best_half_pixel_step(MACROBLOCK *x, BLOCK *b, BLOCKD *d,
int
y_stride
;
MACROBLOCKD
*
xd
=
&
x
->
e_mbd
;
#if ARCH_X86 || ARCH_X86_64
#if
!CONFIG_SUPERBLOCKS && (
ARCH_X86 || ARCH_X86_64
)
unsigned
char
*
y0
=
*
(
d
->
base_pre
)
+
d
->
pre
+
(
bestmv
->
as_mv
.
row
)
*
d
->
pre_stride
+
bestmv
->
as_mv
.
col
;
unsigned
char
*
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