diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2014-10-09 18:55:16 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2014-10-09 18:55:16 -0700 |
commit | cdb2fff298a7ebaa1e33e4dc73b7aca65bc749c6 (patch) | |
tree | 80b1753999f378ef27e7f60e70b3c6351c2d393f /xorg/server/module/rdpXv.h | |
parent | c0839cd6a5a5e98d5975e169dd5f186bc9d008fe (diff) | |
download | xrdp-proprietary-cdb2fff298a7ebaa1e33e4dc73b7aca65bc749c6.tar.gz xrdp-proprietary-cdb2fff298a7ebaa1e33e4dc73b7aca65bc749c6.zip |
Xorg: move simd functions assign to it's own file
Diffstat (limited to 'xorg/server/module/rdpXv.h')
-rw-r--r-- | xorg/server/module/rdpXv.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/xorg/server/module/rdpXv.h b/xorg/server/module/rdpXv.h index 94331688..9cf28700 100644 --- a/xorg/server/module/rdpXv.h +++ b/xorg/server/module/rdpXv.h @@ -31,4 +31,13 @@ XVideo Bool rdpXvInit(ScreenPtr pScreen, ScrnInfoPtr pScrn); +int +YV12_to_RGB32(unsigned char *yuvs, int width, int height, int *rgbs); +int +I420_to_RGB32(unsigned char *yuvs, int width, int height, int *rgbs); +int +YUY2_to_RGB32(unsigned char *yuvs, int width, int height, int *rgbs); +int +UYVY_to_RGB32(unsigned char *yuvs, int width, int height, int *rgbs); + #endif |