我是靠谱客的博主 优美蜡烛,最近开发中收集的这篇文章主要介绍webrtc在移动端:Android, IOS上的视频编码器创建过程1:Android,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目前webrtc在移动端,的编码器实现,会检测硬件编码器部分,如果支持,可以通过硬件编码器进行H264编码,当然包括VP8和VP9的硬件编码检测;

如果不支持,则默认通过VP8软件视频编码器;




1:Android

在Android端,默认编译不包括OPENH264和FFmpeg,需要通过参数设置将这两个库可以编译到Android端;


1:

peerconnectionfactory_jni.cc

JOW(jlong, PeerConnectionFactory_nativeCreatePeerConnectionFactory)(
    JNIEnv* jni, jclass, jobject joptions) {
  // talk/ assumes pretty widely that the current Thread is ThreadManager'd, but
  // ThreadManager only WrapCurrentThread()s the thread where it is first
  // created.  Since the semantics around when auto-wrapping happens in
  // webrtc/base/ are convoluted, we simply wrap here to avoid having to think
  // about ramifications of auto-wrapping there.
  rtc::ThreadManager::Instance()->WrapCurrentThread();

最后

以上就是优美蜡烛为你收集整理的webrtc在移动端:Android, IOS上的视频编码器创建过程1:Android的全部内容,希望文章能够帮你解决webrtc在移动端:Android, IOS上的视频编码器创建过程1:Android所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部