convert.h
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

C++ Builder

  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. //    Project     : VideoNet version 1.1.
  5. //    Description : Peer to Peer Video Conferencing over the LAN.
  6. //   Author      : Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
  7. //    Date        : 15-6-2004.
  8. //
  9. //
  10. //    File description : 
  11. //    Name    : convert.h
  12. //    Details : Conversion routine from RGB24 to YUV420 & YUV420 to RGB24.
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15. #if !defined _CONVERT_H
  16. #define _CONVERT_H
  17. #include<stdio.h>
  18. // Conversion from RGB24 to YUV420
  19. void InitLookupTable();
  20. int  ConvertRGB2YUV(int w,int h,unsigned char *rgbdata,unsigned int *yuv);
  21. // Conversion from YUV420 to RGB24
  22. void InitConvertTable();
  23. void ConvertYUV2RGB(unsigned char *src0,unsigned char *src1,unsigned char *src2,unsigned char *dst_ori,
  24.  int width,int height);
  25. #endif