加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vanishi 提交于 2023-07-30 19:23 . init
//
// Created by bxc on 2023/4/18.
// 作者:北小菜
// 邮箱:bilibili_bxc@126.com
// 西瓜视频主页:https://www.ixigua.com/home/4171970536803763
// 哔哩哔哩主页:https://space.bilibili.com/487906612/
//
#include "Server.h"
#include "gb28181Player.h"
#include <thread>
int main() {
const char* ip = "127.0.0.1";
uint16_t port = 8020;
bool isUdp = false;// tcp or udp
GB28181Player *player = new GB28181Player;
std::thread([](GB28181Player* player1) {
if (player1->probe()) {
player1->play();
}
}, player).detach();
Server server(ip, port, isUdp, player);
server.start();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化