8 lines
232 B
C++
8 lines
232 B
C++
|
#include "const.h"
|
||
|
//定义程序需要的常量
|
||
|
|
||
|
int Frame_width;
|
||
|
int Frame_height;
|
||
|
int Video_buffer_size_per_get;// Frame_width * Frame_height * 3 //每次从视频共享缓冲中取视频的大小
|
||
|
int Video_buffer_channel;
|