Commit fe919178 authored by michael's avatar michael

gcc 2.95 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8059 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 30a3c570
...@@ -188,8 +188,8 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1* ...@@ -188,8 +188,8 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1*
"pxor %%mm7, %%mm7 \n\t" "pxor %%mm7, %%mm7 \n\t"
"movd %5, %%mm2 \n\t" "movd %5, %%mm2 \n\t"
"movd %6, %%mm3 \n\t" "movd %6, %%mm3 \n\t"
"movq %7, %%mm4 \n\t" "movq "MANGLE(ff_pw_8)", %%mm4\n\t"
"movq %7, %%mm5 \n\t" "movq "MANGLE(ff_pw_8)", %%mm5\n\t"
"punpcklwd %%mm2, %%mm2 \n\t" "punpcklwd %%mm2, %%mm2 \n\t"
"punpcklwd %%mm3, %%mm3 \n\t" "punpcklwd %%mm3, %%mm3 \n\t"
"punpcklwd %%mm2, %%mm2 \n\t" "punpcklwd %%mm2, %%mm2 \n\t"
...@@ -246,7 +246,7 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1* ...@@ -246,7 +246,7 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1*
"sub $2, %2 \n\t" "sub $2, %2 \n\t"
"jnz 1b \n\t" "jnz 1b \n\t"
: "+r"(dst), "+r"(src), "+r"(h) : "+r"(dst), "+r"(src), "+r"(h)
: "r"((long)stride), "m"(ff_pw_32), "m"(x), "m"(y), "m"(ff_pw_8) : "r"((long)stride), "m"(ff_pw_32), "m"(x), "m"(y)
); );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment