mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
dct-test: remove write-only variable
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
bd39c07688
commit
2f07cb4d39
@ -190,7 +190,6 @@ static void idct_mmx_init(void)
|
|||||||
|
|
||||||
DECLARE_ALIGNED(16, static DCTELEM, block)[64];
|
DECLARE_ALIGNED(16, static DCTELEM, block)[64];
|
||||||
DECLARE_ALIGNED(8, static DCTELEM, block1)[64];
|
DECLARE_ALIGNED(8, static DCTELEM, block1)[64];
|
||||||
DECLARE_ALIGNED(8, static DCTELEM, block_org)[64];
|
|
||||||
|
|
||||||
static inline void mmx_emms(void)
|
static inline void mmx_emms(void)
|
||||||
{
|
{
|
||||||
@ -245,9 +244,6 @@ static int dct_error(const struct algo *dct, int test, int is_idct, int speed)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < 64; i++)
|
|
||||||
block_org[i] = block1[i];
|
|
||||||
|
|
||||||
if (dct->format == MMX_PERM) {
|
if (dct->format == MMX_PERM) {
|
||||||
for (i = 0; i < 64; i++)
|
for (i = 0; i < 64; i++)
|
||||||
block[idct_mmx_perm[i]] = block1[i];
|
block[idct_mmx_perm[i]] = block1[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user