summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-05 10:51:58 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-05 10:51:58 +0000
commit26046c889c0c1bb0ea7f527e7ba8dde50a6d8fc8 (patch)
treea9f4a6ae5233a5a282ad9be6b12895f1738d5234 /postproc
parent619b5d37020bd593b736512d86417e3ca8d20c1a (diff)
downloadmpv-26046c889c0c1bb0ea7f527e7ba8dde50a6d8fc8.tar.bz2
mpv-26046c889c0c1bb0ea7f527e7ba8dde50a6d8fc8.tar.xz
fix variable type used via "m" asm constraint to match size used in asm.
fixes crashes on AMD64. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18576 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/swscale_template.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c
index 06e68c95aa..9830e3d39f 100644
--- a/postproc/swscale_template.c
+++ b/postproc/swscale_template.c
@@ -873,9 +873,9 @@ static inline void RENAME(yuv2yuv1)(int16_t *lumSrc, int16_t *chrSrc,
*/
static inline void RENAME(yuv2packedX)(SwsContext *c, int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize,
int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize,
- uint8_t *dest, int dstW, int dstY)
+ uint8_t *dest, long dstW, long dstY)
{
- int dummy=0;
+ long dummy=0;
switch(c->dstFormat)
{
#ifdef HAVE_MMX
@@ -2223,7 +2223,7 @@ static inline void RENAME(hScale)(int16_t *dst, int dstW, uint8_t *src, int srcW
#endif
}
// *** horizontal scale Y line to temp buffer
-static inline void RENAME(hyscale)(uint16_t *dst, int dstWidth, uint8_t *src, int srcW, int xInc,
+static inline void RENAME(hyscale)(uint16_t *dst, long dstWidth, uint8_t *src, int srcW, int xInc,
int flags, int canMMX2BeUsed, int16_t *hLumFilter,
int16_t *hLumFilterPos, int hLumFilterSize, void *funnyYCode,
int srcFormat, uint8_t *formatConvBuffer, int16_t *mmx2Filter,
@@ -2336,8 +2336,8 @@ FUNNY_Y_CODE
else
{
#endif
- int xInc_shr16 = xInc >> 16;
- int xInc_mask = xInc & 0xffff;
+ long xInc_shr16 = xInc >> 16;
+ uint16_t xInc_mask = xInc & 0xffff;
//NO MMX just normal asm ...
asm volatile(
"xor %%"REG_a", %%"REG_a" \n\t" // i
@@ -2535,7 +2535,7 @@ FUNNY_UV_CODE
{
#endif
long xInc_shr16 = (long) (xInc >> 16);
- int xInc_mask = xInc & 0xffff;
+ uint16_t xInc_mask = xInc & 0xffff;
asm volatile(
"xor %%"REG_a", %%"REG_a" \n\t" // i
"xor %%"REG_b", %%"REG_b" \n\t" // xx