You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
#include "decodedata.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
|
|
{
|
|
|
|
|
|
DecodeData* m_DecodeData = new DecodeData();
|
|
|
|
|
|
|
|
|
|
|
|
std::string filestr = "D:/Project/S732/udp_datat/720vi.dat";
|
|
|
|
|
|
|
|
|
|
|
|
//std::string filestr = "E:/03855jcw/S732/H265data/1080ir2.dat";
|
|
|
|
|
|
|
|
|
|
|
|
m_DecodeData->m_CurrentVideo = 1;//0:红外,1:可见光
|
|
|
|
|
|
m_DecodeData->m_LocalHeight = 10;// 本地海拔
|
|
|
|
|
|
m_DecodeData->Init();
|
|
|
|
|
|
m_DecodeData->processFileInChunks(filestr, 10 * 1024);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|