Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-20 15:47:29 +0300
committerClément Bœsch <u@pkh.me>2017-03-20 17:58:32 +0300
commite07fa3008bcafc027e9aa654657bae1f1ac64f5d (patch)
treefdc9dc3b4e4565b2a7b4a27a0ccbe77ab65e22b0 /tests
parentce818d90bdb28d8591e6b81e020d1e7f87536649 (diff)
parentde452e503734ebb0fdbce86e9d16693b3530fad3 (diff)
Merge commit 'de452e503734ebb0fdbce86e9d16693b3530fad3'
* commit 'de452e503734ebb0fdbce86e9d16693b3530fad3': pixblockdsp: Change type of stride parameters to ptrdiff_t Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/pixblockdsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/pixblockdsp.c b/tests/checkasm/pixblockdsp.c
index 2b88e7d1ac..e14b0a90de 100644
--- a/tests/checkasm/pixblockdsp.c
+++ b/tests/checkasm/pixblockdsp.c
@@ -64,7 +64,7 @@
#define check_diff_pixels(type) \
do { \
int i; \
- declare_func_emms(AV_CPU_FLAG_MMX, void, int16_t *av_restrict block, const uint8_t *s1, const uint8_t *s2, int stride); \
+ declare_func_emms(AV_CPU_FLAG_MMX, void, int16_t *av_restrict block, const uint8_t *s1, const uint8_t *s2, ptrdiff_t stride); \
\
for (i = 0; i < BUF_UNITS; i++) { \
int src_offset = i * 64 * sizeof(type) + 8 * i; /* Test various alignments */ \