Convert.h
上传用户:szth2006
上传日期:2021-11-30
资源大小:68k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. /***************************************************************/
  2. /*         convert.h - H.261 Codec (TU-Dresden)                */
  3. /*                                                             */
  4. /*         Autor: Dagmar Geske                                 */
  5. /*         Datum: 05.08.1997                                   */   
  6. /*                                                             */
  7. /***************************************************************/
  8. // modified for use as lib: 16.12.97, Henrik Thuermer
  9. #ifndef _CONVERT_H
  10. #define _CONVERT_H
  11. // I use a class because I don't know how to export simple
  12. // functions to the library: If I use simple functions the
  13. // linker does'nt find the functions in the library :-( .   
  14. // (Henrik)
  15. class ColorSpaceConversions {
  16. public:
  17. ColorSpaceConversions();
  18. void RGB24_to_YV12(unsigned char * in, unsigned char * out,int w, int h);
  19. void YV12_to_RGB24(unsigned char *src0,unsigned char *src1,unsigned char *src2,unsigned char *dst_ori,int width,int height);
  20. void YVU9_to_YV12(unsigned char * in,unsigned char * out, int w, int h);
  21. void YUY2_to_YV12(unsigned char * in,unsigned char * out, int w, int h);
  22. void YV12_to_YVU9(unsigned char * in,unsigned char * out, int w, int h);
  23. void YV12_to_YUY2(unsigned char * in,unsigned char * out, int w, int h);
  24. };
  25. #endif /* _CONVERT_H */