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
e6b72d01
Commit
e6b72d01
authored
Nov 14, 2013
by
Dmitry Kovalev
Browse files
Removing unused coefband_trans_8x8plus array from VP9Decompressor.
Change-Id: Ic1367d767705377402ebfec0705f9f553a834400
parent
f16cde99
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_decodframe.c
View file @
e6b72d01
...
...
@@ -1304,13 +1304,6 @@ int vp9_decode_frame(VP9D_COMP *pbi, const uint8_t **p_data_end) {
const
int
tile_cols
=
1
<<
cm
->
log2_tile_cols
;
YV12_BUFFER_CONFIG
*
const
new_fb
=
get_frame_new_buffer
(
cm
);
vpx_memset
(
pbi
->
coefband_trans_8x8plus
,
(
COEF_BANDS
-
1
),
sizeof
(
pbi
->
coefband_trans_8x8plus
));
vpx_memcpy
(
pbi
->
coefband_trans_8x8plus
,
vp9_coefband_trans_8x8plus
,
sizeof
(
vp9_coefband_trans_8x8plus
));
if
(
!
first_partition_size
)
{
// showing a frame directly
*
p_data_end
=
data
+
1
;
...
...
vp9/decoder/vp9_onyxd_int.h
View file @
e6b72d01
...
...
@@ -55,7 +55,6 @@ typedef struct VP9Decompressor {
PARTITION_CONTEXT
*
above_seg_context
;
DECLARE_ALIGNED
(
16
,
uint8_t
,
token_cache
[
1024
]);
DECLARE_ALIGNED
(
16
,
uint8_t
,
coefband_trans_8x8plus
[
1024
]);
}
VP9D_COMP
;
#endif // VP9_DECODER_VP9_ONYXD_INT_H_
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