convert.h
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:1k
- ////////////////////////////////////////////////////////////////////////////
- //
- //
- // Project : VideoNet version 1.1.
- // Description : Peer to Peer Video Conferencing over the LAN.
- // Author : Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
- // Date : 15-6-2004.
- //
- //
- // File description :
- // Name : convert.h
- // Details : Conversion routine from RGB24 to YUV420 & YUV420 to RGB24.
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined _CONVERT_H
- #define _CONVERT_H
- #include<stdio.h>
- // Conversion from RGB24 to YUV420
- void InitLookupTable();
- int ConvertRGB2YUV(int w,int h,unsigned char *rgbdata,unsigned int *yuv);
- // Conversion from YUV420 to RGB24
- void InitConvertTable();
- void ConvertYUV2RGB(unsigned char *src0,unsigned char *src1,unsigned char *src2,unsigned char *dst_ori,
- int width,int height);
- #endif