mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-30 19:34:43 +00:00
fate/checkasm: use LOCAL_ALINGED_32 on hevc_add_res tests
This commit is contained in:
parent
b68068eed2
commit
36eae45510
@ -45,10 +45,10 @@
|
|||||||
static void check_add_res(HEVCDSPContext h, int bit_depth)
|
static void check_add_res(HEVCDSPContext h, int bit_depth)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
LOCAL_ALIGNED(32, int16_t, res0, [32 * 32]);
|
LOCAL_ALIGNED_32(int16_t, res0, [32 * 32]);
|
||||||
LOCAL_ALIGNED(32, int16_t, res1, [32 * 32]);
|
LOCAL_ALIGNED_32(int16_t, res1, [32 * 32]);
|
||||||
LOCAL_ALIGNED(32, uint8_t, dst0, [32 * 32 * 2]);
|
LOCAL_ALIGNED_32(uint8_t, dst0, [32 * 32 * 2]);
|
||||||
LOCAL_ALIGNED(32, uint8_t, dst1, [32 * 32 * 2]);
|
LOCAL_ALIGNED_32(uint8_t, dst1, [32 * 32 * 2]);
|
||||||
|
|
||||||
for (i = 2; i <= 5; i++) {
|
for (i = 2; i <= 5; i++) {
|
||||||
int block_size = 1 << i;
|
int block_size = 1 << i;
|
||||||
|
Loading…
Reference in New Issue
Block a user