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
0a58f462
Commit
0a58f462
authored
Jul 22, 2013
by
James Zern
Browse files
VP9_COMMON: remove unused temp_scale_frame
Change-Id: I696a0dca1d02d365e283029d1d077710bd5680e0
parent
ccf6710d
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_alloccommon.c
View file @
0a58f462
...
...
@@ -53,7 +53,6 @@ void vp9_free_frame_buffers(VP9_COMMON *oci) {
for
(
i
=
0
;
i
<
NUM_YV12_BUFFERS
;
i
++
)
vp9_free_frame_buffer
(
&
oci
->
yv12_fb
[
i
]);
vp9_free_frame_buffer
(
&
oci
->
temp_scale_frame
);
vp9_free_frame_buffer
(
&
oci
->
post_proc_buffer
);
vpx_free
(
oci
->
mip
);
...
...
@@ -121,10 +120,6 @@ int vp9_alloc_frame_buffers(VP9_COMMON *oci, int width, int height) {
oci
->
fb_idx_ref_cnt
[
i
]
=
1
;
}
if
(
vp9_alloc_frame_buffer
(
&
oci
->
temp_scale_frame
,
width
,
16
,
ss_x
,
ss_y
,
VP9BORDERINPIXELS
)
<
0
)
goto
fail
;
if
(
vp9_alloc_frame_buffer
(
&
oci
->
post_proc_buffer
,
width
,
height
,
ss_x
,
ss_y
,
VP9BORDERINPIXELS
)
<
0
)
goto
fail
;
...
...
vp9/common/vp9_onyxc_int.h
View file @
0a58f462
...
...
@@ -130,10 +130,7 @@ typedef struct VP9Common {
struct
scale_factors
active_ref_scale
[
ALLOWED_REFS_PER_FRAME
];
int
new_fb_idx
;
YV12_BUFFER_CONFIG
post_proc_buffer
;
YV12_BUFFER_CONFIG
temp_scale_frame
;
FRAME_TYPE
last_frame_type
;
/* Save last frame's frame type for motion search. */
FRAME_TYPE
frame_type
;
...
...
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