摘要: 参考: https://www.cnblogs.com/wangnath/p/15057885.html https://stephenzhou.blog.csdn.net/article/details/127342398 https://www.cnblogs.com/TaigaCon/p/36 阅读全文
posted @ 2024-11-22 09:11 小夕nike 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/ishen/p/15333271.html https://zhuanlan.zhihu.com/p/603421239 1. 生成 1.1 等待并筹齐多个原始包 webrtc 会等待筹齐多个 rtp 包后,再统一生成冗余包,参看 Ulpfec 阅读全文
posted @ 2024-05-23 17:40 小夕nike 阅读(166) 评论(0) 推荐(1) 编辑
摘要: 1. 问题 在 mediacodec 解码 h264 视频的时候,有时候会出现首帧出来延迟的情况。一般来说,如果视频流不包含 B 帧,应该是丢一个完整包进去就能解码得到一帧,但是有些视频流不是这种情况。首帧可能会延迟几个包才出来 2. 分析 首先我们需要明确一个知识点就是,解码器一般会对解码出来的帧 阅读全文
posted @ 2024-04-30 16:12 小夕nike 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 参考: https://luyuhuang.tech/2020/12/09/kcp.html https://xiaolincoding.com/network/ https://coolshell.cn/articles/11564.html 1. 概述 kcp 是一个基于 udp 的应用层协议, 阅读全文
posted @ 2024-04-30 15:50 小夕nike 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 参考: rfc8445 1. 概述 本篇博客主要介绍一下自己学习的一些 webrtc ice 连接和重连逻辑,最后面介绍一些针对重连的优化。 2. 一些重要的类 ice 模块有一些非常重要的类,他们各司其职,又协同工作: 类名 文件 功能 P2PTransportChannel p2p/base/p 阅读全文
posted @ 2024-04-30 15:45 小夕nike 阅读(732) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.nxrte.com/jishu/webrtc/15471.html webrtc 资源自适应策略,是 webrtc 内部通过实时检查多种资源情况,决策出输入源应该采取哪些动作来自适应资源变化的一种方法。 自适应仅针对视频流。 1. 开启自适应 在 media/base 阅读全文
posted @ 2024-04-29 14:42 小夕nike 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 参考: C++ Concurrency In Action 2rd 第7章 https://en.wikipedia.org/wiki/ABA_problem http://www.cs.cmu.edu/afs/cs/academic/class/15418-f18/www/lectures/17_ 阅读全文
posted @ 2022-07-22 09:51 小夕nike 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 参考: C++ Concurrency In Action 2rd 第5章 https://stackoverflow.com/questions/14861822/acquire-release-versus-sequentially-consistent-memory-order https:/ 阅读全文
posted @ 2022-07-21 17:46 小夕nike 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 参考: C++ Concurrency In Action 2rd 第6章 实验环境: system: centos 8.1 / arch: x86_64 / kernel: 4.18.0 / g++: 8.5.0 1. 概述 下文主要以异步队列为例进行讲解。 注意,为了便于理解,所以下文的代码与原 阅读全文
posted @ 2022-07-21 17:46 小夕nike 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 参考: https://gstreamer.freedesktop.org/documentation/plugin-development/index.html?gi-language=c gstreamer tee plugin, flvdemux plugin, rtpbasepayload 阅读全文
posted @ 2022-07-14 11:21 小夕nike 阅读(741) 评论(0) 推荐(0) 编辑