# HG changeset patch # User nick # Date 1004265942 0 # Node ID 501752469c39358b1177e1c8d73c1fafeabfe0ae # Parent 2aaa11d22f91bd9d4bedf301b42b4bc95d600281 vo_vesa: more rgb2rgb support diff -r 2aaa11d22f91 -r 501752469c39 libvo/vo_vesa.c --- a/libvo/vo_vesa.c Sun Oct 28 10:28:08 2001 +0000 +++ b/libvo/vo_vesa.c Sun Oct 28 10:45:42 2001 +0000 @@ -584,6 +584,8 @@ else if(image_bpp == 32 && video_mode_info.BitsPerPixel == 24) rgb2rgb_fnc = rgb32to24; else + if(image_bpp == 15 && video_mode_info.BitsPerPixel == 16) rgb2rgb_fnc = rgb15to16; + else { printf("vo_vesa: Can't convert %u to %u\n",image_bpp,video_mode_info.BitsPerPixel); return -1; diff -r 2aaa11d22f91 -r 501752469c39 postproc/rgb2rgb.c --- a/postproc/rgb2rgb.c Sun Oct 28 10:28:08 2001 +0000 +++ b/postproc/rgb2rgb.c Sun Oct 28 10:45:42 2001 +0000 @@ -1,6 +1,7 @@ #include #include "../config.h" #include "rgb2rgb.h" +#include "mmx.h" /* TODO: MMX optimization */ @@ -33,3 +34,55 @@ s++; } } + +/* Original by Strepto/Astral + ported to gcc & bugfixed : A'rpi */ +void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size) +{ +#ifdef HAVE_MMX + static uint64_t mask_b = 0x001F001F001F001FLL; // 00000000 00011111 xxB + static uint64_t mask_rg = 0x7FE07FE07FE07FE0LL; // 01111111 11100000 RGx + register char* s=src+src_size; + register char* d=dst+src_size; + register int offs=-src_size; + movq_m2r (mask_b, mm4); + movq_m2r (mask_rg, mm5); + while(offs<0){ + movq_m2r (*(s+offs), mm0); + movq_r2r (mm0, mm1); + + movq_m2r (*(s+8+offs), mm2); + movq_r2r (mm2, mm3); + + pand_r2r (mm4, mm0); + pand_r2r (mm5, mm1); + + psllq_i2r(1,mm1); + pand_r2r (mm4, mm2); + + pand_r2r (mm5, mm3); + por_r2r (mm1, mm0); + + psllq_i2r(1,mm3); + movq_r2m (mm0,*(d+offs)); + + por_r2r (mm3,mm2); + movq_r2m (mm2,*(d+8+offs)); + + offs+=16; + } + emms(); +#else + uint16_t *s1=( uint16_t * )src; + uint16_t *d1=( uint16_t * )dst; + uint16_t *e=((uint8_t *)s1)+src_size; + while( s1 #include "../config.h" #include "rgb2rgb.h" +#include "mmx.h" /* TODO: MMX optimization */ @@ -33,3 +34,55 @@ s++; } } + +/* Original by Strepto/Astral + ported to gcc & bugfixed : A'rpi */ +void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size) +{ +#ifdef HAVE_MMX + static uint64_t mask_b = 0x001F001F001F001FLL; // 00000000 00011111 xxB + static uint64_t mask_rg = 0x7FE07FE07FE07FE0LL; // 01111111 11100000 RGx + register char* s=src+src_size; + register char* d=dst+src_size; + register int offs=-src_size; + movq_m2r (mask_b, mm4); + movq_m2r (mask_rg, mm5); + while(offs<0){ + movq_m2r (*(s+offs), mm0); + movq_r2r (mm0, mm1); + + movq_m2r (*(s+8+offs), mm2); + movq_r2r (mm2, mm3); + + pand_r2r (mm4, mm0); + pand_r2r (mm5, mm1); + + psllq_i2r(1,mm1); + pand_r2r (mm4, mm2); + + pand_r2r (mm5, mm3); + por_r2r (mm1, mm0); + + psllq_i2r(1,mm3); + movq_r2m (mm0,*(d+offs)); + + por_r2r (mm3,mm2); + movq_r2m (mm2,*(d+8+offs)); + + offs+=16; + } + emms(); +#else + uint16_t *s1=( uint16_t * )src; + uint16_t *d1=( uint16_t * )dst; + uint16_t *e=((uint8_t *)s1)+src_size; + while( s1