Skip to content
GitLab
Menu
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
2af46568
Commit
2af46568
authored
Jun 28, 2014
by
James Zern
Committed by
Gerrit Code Review
Jun 28, 2014
Browse files
Merge "vp9: disable postproc buffer alloc when unnecessary"
parents
b5906291
44472cde
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_alloccommon.c
View file @
2af46568
...
...
@@ -127,12 +127,15 @@ void vp9_free_context_buffers(VP9_COMMON *cm) {
int
vp9_resize_frame_buffers
(
VP9_COMMON
*
cm
,
int
width
,
int
height
)
{
const
int
aligned_width
=
ALIGN_POWER_OF_TWO
(
width
,
MI_SIZE_LOG2
);
const
int
aligned_height
=
ALIGN_POWER_OF_TWO
(
height
,
MI_SIZE_LOG2
);
#if CONFIG_INTERNAL_STATS || CONFIG_VP9_POSTPROC
const
int
ss_x
=
cm
->
subsampling_x
;
const
int
ss_y
=
cm
->
subsampling_y
;
// TODO(agrange): this should be conditionally allocated.
if
(
vp9_realloc_frame_buffer
(
&
cm
->
post_proc_buffer
,
width
,
height
,
ss_x
,
ss_y
,
VP9_DEC_BORDER_IN_PIXELS
,
NULL
,
NULL
,
NULL
)
<
0
)
goto
fail
;
#endif
set_mb_mi
(
cm
,
aligned_width
,
aligned_height
);
...
...
@@ -199,9 +202,11 @@ int vp9_alloc_frame_buffers(VP9_COMMON *cm, int width, int height) {
init_frame_bufs
(
cm
);
#if CONFIG_INTERNAL_STATS || CONFIG_VP9_POSTPROC
if
(
vp9_alloc_frame_buffer
(
&
cm
->
post_proc_buffer
,
width
,
height
,
ss_x
,
ss_y
,
VP9_ENC_BORDER_IN_PIXELS
)
<
0
)
goto
fail
;
#endif
return
0
;
...
...
Write
Preview
Supports
Markdown
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