cconv_yuv2rgb.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ***************************************************************************
  3.  * file
  4.  *    cconv_yuv2rgb.h
  5.  *
  6.  * author
  7.  *    Woo-Shik Kim
  8.  *
  9.  * date
  10.  *    29 May 2008
  11.  *
  12.  * brief
  13.  *    Headerfile for YUV to RGB color conversion
  14.  **************************************************************************
  15.  */
  16. #ifndef _CCONV_YUV2RGB_H_
  17. #define _CCONV_YUV2RGB_H_
  18. #include "img_distortion.h"
  19. void init_YUVtoRGB(void);
  20. void YUVtoRGB(ImageStructure *YUV, ImageStructure *RGB);
  21. int  create_RGB_memory(ImageParameters *img);
  22. void delete_RGB_memory(void);
  23. #endif