summaryrefslogtreecommitdiff
path: root/tests/checkasm
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-11-13 23:02:39 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2016-11-13 23:02:39 +0100
commitf75035b06f4b287443fa9275f76183ace39c2d45 (patch)
treecbc5e0236531d2300f40e6deb481e55805563cdf /tests/checkasm
parentaf8b174711f3afff7d495ac00fe5bf9be98d3b70 (diff)
parente48746deec48e9ff195841bc3266b4e153a878cd (diff)
Merge commit 'e48746deec48e9ff195841bc3266b4e153a878cd'
* commit 'e48746deec48e9ff195841bc3266b4e153a878cd': checkasm: h264dsp: Move the x and y variables into the randomize_buffer macro Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'tests/checkasm')
-rw-r--r--tests/checkasm/h264dsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/h264dsp.c b/tests/checkasm/h264dsp.c
index 2c2603b2ca..945423703f 100644
--- a/tests/checkasm/h264dsp.c
+++ b/tests/checkasm/h264dsp.c
@@ -34,6 +34,7 @@ static const uint32_t pixel_mask[3] = { 0xffffffff, 0x01ff01ff, 0x03ff03ff };
#define randomize_buffers() \
do { \
+ int x, y; \
uint32_t mask = pixel_mask[bit_depth - 8]; \
for (y = 0; y < sz; y++) { \
for (x = 0; x < PIXEL_STRIDE; x += 4) { \
@@ -178,8 +179,7 @@ static void check_idct(void)
LOCAL_ALIGNED_16(int16_t, subcoef0, [8 * 8 * 2]);
LOCAL_ALIGNED_16(int16_t, subcoef1, [8 * 8 * 2]);
H264DSPContext h;
- int bit_depth, sz, align;
- int x, y, dc;
+ int bit_depth, sz, align, dc;
declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *dst, int16_t *block, int stride);
for (bit_depth = 8; bit_depth <= 10; bit_depth++) {