stream-deploy/ZLM/3rdpart/media-server/libmpeg
孙小云 548ed256da 将 ZLM 从独立 git 仓库转换为普通目录
- 删除 ZLM 的 .git 目录
- 将 ZLM 及其所有源码添加到主项目
- 原 git 仓库信息已备份到 /tmp/zlm_git_remote_backup.txt
- 包含所有 3rdpart 依赖库代码
2025-12-07 12:57:53 +08:00
..
include 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
libmpeg.xcodeproj 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
source 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
test 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
Android.mk 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
Makefile 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
README.md 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
libmpeg.vcxproj 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
libmpeg.vcxproj.filters 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00
version.ver 将 ZLM 从独立 git 仓库转换为普通目录 2025-12-07 12:57:53 +08:00

README.md

#PS packer

#TS packer


struct mpeg_ts_func_t h;
h.alloc = ts_alloc;
h.write = ts_write;
h.free = ts_free;

void* ts = mpeg_ts_create(&h, fp);

while(1)
{
	mpeg_ts_write(param, avtype, pts, dts, data, bytes);
}

mpeg_ts_destroy(ts);