⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 H.264完整的C语言代码和DCT的代码
💻 CPP
字号:

// Copyright (C) 2002-2003 The Board of Trustees of the Leland Stanford
// Junior University

#include "libapi.hpp"

//************************************************************
// the standard main.cpp for any stream application
//************************************************************

#ifndef _REAL_IMAGINE
void LIBAPI2FN isimhost_main(int argc, char **argv);

//------------------------------------------------------------
void main(int argc, char **argv)
// calls isimhost_main in isimhost.dll
//------------------------------------------------------------
{
  isimhost_main(argc, argv);
}

#else // _REAL_IMAGINE
#include <stdio.h>
void board_main(void);

// main must return int to be GNU compatible
int main(void)
{
  board_main();
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -