epoll
Maxwellhang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ffmpeg编解码demo
#include <stdbool.h>#include <stdio.h>#include <stdlib.h>#include <string.h>extern "C" { #include <libavutil/time.h> #include <libavutil/timestamp.h> #include <libavutil/opt.h> #include <libavformat/avf原创 2021-02-21 18:37:02 · 617 阅读 · 1 评论 -
epoll + socket
功能 读取视频并播放注释部分为多线程方案单线程epoll方案每帧都要请求,可以做到帧同步多线程方案可以不用每帧都请求,不能做到帧同步, 各发各的#include <stdio.h>#include <stdlib.h>#include <string.h>#include <errno.h>#include <sys/types.h>#include <sys/socket.h>#include <neti原创 2021-02-21 17:57:14 · 216 阅读 · 0 评论
分享