Commit ddb9d211 authored by michael's avatar michael

Fix build failure due to %%eip on x86_64.


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27569 b3059339-0415-0410-9bf9-f77b7e298cf2
parent b3030cf6
...@@ -1909,13 +1909,15 @@ static inline void bgr24ToY_mmx(uint8_t *dst, uint8_t *src, long width, int srcF ...@@ -1909,13 +1909,15 @@ static inline void bgr24ToY_mmx(uint8_t *dst, uint8_t *src, long width, int srcF
if(srcFormat == PIX_FMT_BGR24){ if(srcFormat == PIX_FMT_BGR24){
asm volatile( asm volatile(
"movq "MANGLE(ff_bgr24toY1Coeff)", %mm5 \n\t" "movq "MANGLE(ff_bgr24toY1Coeff)", %%mm5 \n\t"
"movq "MANGLE(ff_bgr24toY2Coeff)", %mm6 \n\t" "movq "MANGLE(ff_bgr24toY2Coeff)", %%mm6 \n\t"
:
); );
}else{ }else{
asm volatile( asm volatile(
"movq "MANGLE(ff_rgb24toY1Coeff)", %mm5 \n\t" "movq "MANGLE(ff_rgb24toY1Coeff)", %%mm5 \n\t"
"movq "MANGLE(ff_rgb24toY2Coeff)", %mm6 \n\t" "movq "MANGLE(ff_rgb24toY2Coeff)", %%mm6 \n\t"
:
); );
} }
......
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