i965_drv_video: improved MV quality for VME
[platform/upstream/libva.git] / i965_drv_video / intel_compiler.h
1 #ifndef _INTEL_COMPILER_H_
2 #define _INTEL_COMPILER_H_
3
4 /**
5  * Function inlining
6  */
7 #if defined(__GNUC__)
8 #  define INLINE __inline__
9 #elif (__STDC_VERSION__ >= 199901L) /* C99 */
10 #  define INLINE inline
11 #else
12 #  define INLINE
13 #endif
14
15 #endif /* _INTEL_COMPILER_H_ */