mirror of https://git.ffmpeg.org/ffmpeg.git
Fix build failure due to %%eip on x86_64.
Originally committed as revision 27569 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
6b79dbce0c
commit
ff9a056d1a
|
@ -1909,13 +1909,15 @@ static inline void bgr24ToY_mmx(uint8_t *dst, uint8_t *src, long width, int srcF
|
|||
|
||||
if(srcFormat == PIX_FMT_BGR24){
|
||||
asm volatile(
|
||||
"movq "MANGLE(ff_bgr24toY1Coeff)", %mm5 \n\t"
|
||||
"movq "MANGLE(ff_bgr24toY2Coeff)", %mm6 \n\t"
|
||||
"movq "MANGLE(ff_bgr24toY1Coeff)", %%mm5 \n\t"
|
||||
"movq "MANGLE(ff_bgr24toY2Coeff)", %%mm6 \n\t"
|
||||
:
|
||||
);
|
||||
}else{
|
||||
asm volatile(
|
||||
"movq "MANGLE(ff_rgb24toY1Coeff)", %mm5 \n\t"
|
||||
"movq "MANGLE(ff_rgb24toY2Coeff)", %mm6 \n\t"
|
||||
"movq "MANGLE(ff_rgb24toY1Coeff)", %%mm5 \n\t"
|
||||
"movq "MANGLE(ff_rgb24toY2Coeff)", %%mm6 \n\t"
|
||||
:
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue