Browse Source

Make sure that sfence is used after any non temporal stores.

Originally committed as revision 30287 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.6
Zuxy Meng 16 years ago
parent
commit
845e37e770
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/x86/yuv2rgb_template.c

+ 2
- 2
libswscale/x86/yuv2rgb_template.c View File

@@ -168,7 +168,7 @@
: "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index) \
); \
} \
__asm__ volatile (EMMS); \
__asm__ volatile (SFENCE"\n\t"EMMS); \
return srcSliceH; \

#define YUV2RGB_OPERANDS_ALPHA \
@@ -176,7 +176,7 @@
: "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index), "r" (pa - 2*index) \
); \
} \
__asm__ volatile (EMMS); \
__asm__ volatile (SFENCE"\n\t"EMMS); \
return srcSliceH; \

static inline int RENAME(yuv420_rgb16)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,


Loading…
Cancel
Save