]> git.sesse.net Git - vlc/blobdiff - plugins/yuvmmx/video_yuv.h
. rajout de l'option -Winline
[vlc] / plugins / yuvmmx / video_yuv.h
index 3d7feffc9a34cc123798d025ef18a8a562c6f294..4e0673bb3b79738b5c3cdd924f8cba7ac3707687 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * video_yuv.h: YUV transformation functions
+ * video_yuv.h: MMX YUV transformation functions
  * Provides functions to perform the YUV conversion. The functions provided here
  * are a complete and portable C implementation, and may be replaced in certain
  * case by optimized functions.
  * Constants
  *****************************************************************************/
 
-/* Margins and offsets in conversion tables - Margins are used in case a RGB
- * RGB conversion would give a value outside the 0-255 range. Offsets have been
- * calculated to avoid using the same cache line for 2 tables. conversion tables
- * are 2*MARGIN + 256 long and stores pixels.*/
-#define RED_MARGIN      178
-#define GREEN_MARGIN    135
-#define BLUE_MARGIN     224
-#define RED_OFFSET      1501                                 /* 1323 to 1935 */
-#define GREEN_OFFSET    135                                      /* 0 to 526 */
-#define BLUE_OFFSET     818                                   /* 594 to 1298 */
-#define RGB_TABLE_SIZE  1935                             /* total table size */
-
 #define GRAY_MARGIN     384
 #define GRAY_TABLE_SIZE 1024                             /* total table size */
 
 #define PALETTE_TABLE_SIZE 2176          /* YUV -> 8bpp palette lookup table */
 
-/* macros used for YUV pixel conversions */
-#define SHIFT 20
-#define U_GREEN_COEF    ((int)(-0.391 * (1<<SHIFT) / 1.164))
-#define U_BLUE_COEF     ((int)(2.018 * (1<<SHIFT) / 1.164))
-#define V_RED_COEF      ((int)(1.596 * (1<<SHIFT) / 1.164))
-#define V_GREEN_COEF    ((int)(-0.813 * (1<<SHIFT) / 1.164))
-
 /* argument lists for YUV functions */
 #define YUV_ARGS_8BPP p_vout_thread_t p_vout, u8 *p_pic, yuv_data_t *p_y, \
 yuv_data_t *p_u, yuv_data_t *p_v, int i_width, int i_height, int i_pic_width, \