Fix tx-skip warnings on Windows
Change-Id: I2a515abe20e6989de233fc8ae2c31d8ee462add2
This commit is contained in:
parent
0c8bcb43a0
commit
c80386a5ab
@ -2760,30 +2760,25 @@ DECLARE_ALIGNED(16, static const int16_t, vp9_default_iscan_64x64[4096]) = {
|
||||
#endif // CONFIG_TX64X64
|
||||
|
||||
#if CONFIG_TX_SKIP
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_scan_pxd_4x4[16]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_scan_pxd_8x8[64]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_scan_pxd_16x16[256]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_scan_pxd_32x32[1024]);
|
||||
int16_t vp9_default_scan_pxd_4x4[16];
|
||||
int16_t vp9_default_scan_pxd_8x8[64];
|
||||
int16_t vp9_default_scan_pxd_16x16[256];
|
||||
int16_t vp9_default_scan_pxd_32x32[1024];
|
||||
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_pxd_4x4[16]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_pxd_8x8[64]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_pxd_16x16[256]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_pxd_32x32[1024]);
|
||||
int16_t vp9_default_iscan_pxd_4x4[16];
|
||||
int16_t vp9_default_iscan_pxd_8x8[64];
|
||||
int16_t vp9_default_iscan_pxd_16x16[256];
|
||||
int16_t vp9_default_iscan_pxd_32x32[1024];
|
||||
|
||||
DECLARE_ALIGNED(16, int16_t,
|
||||
vp9_default_scan_pxd_4x4_neighbors[17 * MAX_NEIGHBORS]);
|
||||
DECLARE_ALIGNED(16, int16_t,
|
||||
vp9_default_scan_pxd_8x8_neighbors[65 * MAX_NEIGHBORS]);
|
||||
DECLARE_ALIGNED(16, int16_t,
|
||||
vp9_default_scan_pxd_16x16_neighbors[257 * MAX_NEIGHBORS]);
|
||||
DECLARE_ALIGNED(16, int16_t,
|
||||
vp9_default_scan_pxd_32x32_neighbors[1025 * MAX_NEIGHBORS]);
|
||||
int16_t vp9_default_scan_pxd_4x4_neighbors[17 * MAX_NEIGHBORS];
|
||||
int16_t vp9_default_scan_pxd_8x8_neighbors[65 * MAX_NEIGHBORS];
|
||||
int16_t vp9_default_scan_pxd_16x16_neighbors[257 * MAX_NEIGHBORS];
|
||||
int16_t vp9_default_scan_pxd_32x32_neighbors[1025 * MAX_NEIGHBORS];
|
||||
|
||||
#if CONFIG_TX64X64
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_scan_pxd_64x64[4096]);
|
||||
DECLARE_ALIGNED(16, int16_t, vp9_default_iscan_pxd_64x64[4096]);
|
||||
DECLARE_ALIGNED(16, int16_t,
|
||||
vp9_default_scan_pxd_64x64_neighbors[4097 * MAX_NEIGHBORS]);
|
||||
int16_t vp9_default_scan_pxd_64x64[4096];
|
||||
int16_t vp9_default_iscan_pxd_64x64[4096];
|
||||
int16_t vp9_default_scan_pxd_64x64_neighbors[4097 * MAX_NEIGHBORS];
|
||||
#endif // CONFIG_TX64X64
|
||||
|
||||
const scan_order vp9_default_scan_orders_pxd[TX_SIZES] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user