?? jpeg.h
字號:
#ifndef JPEG__H
#define JPEG__H
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#define HANDLE void*
typedef enum
{ UYVY422 = 1, // pack
YUV420, // plane
YUV422, // plane
IYU2 // plane
}YUV_TYPE;
// codec APIs
#ifdef __cplusplus
extern "C" {
#endif
HANDLE init_jpeg_enc(FILE * fp_jpg, unsigned char * YUV_Buffer, int YUV_Type,int width, int height, int heap_L1, int heap_L2, int heap_L3);
void jpg_encode( void );
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -