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
da9402fb
Commit
da9402fb
authored
Feb 16, 2011
by
Yunqing Wang
Committed by
Code Review
Feb 16, 2011
Browse files
Merge "Allocate source buffers to be multiples of 16"
parents
0c2cfff9
da227b90
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/onyx_if.c
View file @
da9402fb
...
...
@@ -1267,6 +1267,8 @@ void vp8_set_speed_features(VP8_COMP *cpi)
static
void
alloc_raw_frame_buffers
(
VP8_COMP
*
cpi
)
{
int
i
,
buffers
;
/* allocate source_buffer to be multiples of 16 */
int
width
=
(
cpi
->
oxcf
.
Width
+
15
)
&
~
15
;
buffers
=
cpi
->
oxcf
.
lag_in_frames
;
...
...
@@ -1278,7 +1280,7 @@ static void alloc_raw_frame_buffers(VP8_COMP *cpi)
for
(
i
=
0
;
i
<
buffers
;
i
++
)
if
(
vp8_yv12_alloc_frame_buffer
(
&
cpi
->
src_buffer
[
i
].
source_buffer
,
cpi
->
oxcf
.
W
idth
,
cpi
->
oxcf
.
Height
,
w
idth
,
cpi
->
oxcf
.
Height
,
16
))
vpx_internal_error
(
&
cpi
->
common
.
error
,
VPX_CODEC_MEM_ERROR
,
"Failed to allocate lag buffer"
);
...
...
@@ -1286,7 +1288,7 @@ static void alloc_raw_frame_buffers(VP8_COMP *cpi)
#if VP8_TEMPORAL_ALT_REF
if
(
vp8_yv12_alloc_frame_buffer
(
&
cpi
->
alt_ref_buffer
.
source_buffer
,
cpi
->
oxcf
.
W
idth
,
cpi
->
oxcf
.
Height
,
16
))
w
idth
,
cpi
->
oxcf
.
Height
,
16
))
vpx_internal_error
(
&
cpi
->
common
.
error
,
VPX_CODEC_MEM_ERROR
,
"Failed to allocate altref buffer"
);
...
...
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