00001 #ifndef CCVT_H
00002 #define CCVT_H
00003
00004 #ifdef __cplusplus
00005 extern "C" {
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 void ccvt_420i_bgr24(int width, int height, void *src, void *dst);
00042 void ccvt_420i_rgb24(int width, int height, void *src, void *dst);
00043 void ccvt_420i_bgr32(int width, int height, void *src, void *dst);
00044 void ccvt_420i_rgb32(int width, int height, void *src, void *dst);
00045
00046
00047 void ccvt_yuyv_rgb32(int width, int height, void *src, void *dst);
00048 void ccvt_yuyv_bgr32(int width, int height, void *src, void *dst);
00049
00050
00051 void ccvt_420p_rgb32(int width, int height, void *srcy, void *srcu, void *srcv, void *dst);
00052 void ccvt_420p_bgr32(int width, int height, void *srcy, void *srcu, void *srcv, void *dst);
00053
00054
00055
00056
00057 void ccvt_rgb24_420p(int width, int height, void *src, void *dsty, void *dstu, void *dstv);
00058 void ccvt_bgr24_420p(int width, int height, void *src, void *dsty, void *dstu, void *dstv);
00059
00060
00061 void ccvt_420i_420p(int width, int height, void *src, void *dsty, void *dstu, void *dstv);
00062 void ccvt_420i_yuyv(int width, int height, void *src, void *dst);
00063
00064 #ifdef __cplusplus
00065 }
00066 #endif
00067
00068 #endif