当前位置:   article > 正文

WebRTC-Streamer交叉编译_webrtc-streamer 编译

webrtc-streamer 编译

WebRTC-Streamer交叉编译

flyfish

2023-08-28
2023-09-01
2023-09-22 新增 CentOS版本docker下运行

零、前言

WebRTC-Streamer源码

https://github.com/mpromonet/webrtc-streamer
  • 1

官网给的三步是
1安装 Chromium depot tools

pushd ..
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH=$PATH:`realpath depot_tools`
popd
  • 1
  • 2
  • 3
  • 4

2 下载 WebRTC

mkdir ../webrtc
pushd ../webrtc
fetch --no-history webrtc 
popd
  • 1
  • 2
  • 3
  • 4

3 构建 WebRTC Streamer

cmake . && make
  • 1

这里实践第三步首先要编译WebRTC,然后再编译WebRTC-Streamer

webrtc编译

一、提前准备工作

1 安装需要的工具

sudo apt-get install build-essential pkg-config devhelp glade libglade2-dev
sudo apt-get install libgtk-3-dev
sudo apt install ninja-build
sudo apt install git
sudo apt install libcanberra-gtk-module
sudo apt install cmake
sudo apt install python3-pip
pip3 install dataclasses
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

2 可选的交叉编译工具

https://mirrors.tuna.tsinghua.edu.cn/armbian-releases/_toolchain/
  • 1

3 默认执行python是python3

sudo rm /usr/bin/python
sudo ln -s /usr/bin/python3 /usr/bin/python
python --version
  • 1
  • 2
  • 3

4 获取源码

 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
  • 1

创建webrtc文件夹
终端命令进入webrtc文件夹后,执行命令
加载路径

export PATH=/path/to/depot_tools:$PATH
  • 1

替换成depot_tools所在路径,这里用的是

export PATH="$PATH:/home/a/source/depot_tools/"
  • 1
fetch --nohooks webrtc
gclient sync
  • 1
  • 2

5 使用其他版本的方法

切换到分支方法
查看有哪些版本

https://webrtc.github.io/webrtc-org/release-notes/
  • 1

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述打开链接可以看到M85 和4183

进入 webrtc/src目录,执行命令

git checkout -b m85 branch-heads/4183
gclient sync
  • 1
  • 2

或者通过git branch -r 查看有哪些分支

二、非交叉编译编译

可编译x86_64版本

1 在 src目录执行 安装所需的依赖

./build/install-build-deps.sh
  • 1

这里实际用的是

./build/install-build-deps.sh --no-chromeos-fonts  #跳过字体的安装
  • 1

2 执行命令

gn gen out/Default --args='is_debug=false'
ninja -C out/Default
  • 1
  • 2

三、 交叉编译

可编译arm32或者arm64版本
根据自己需要选择

1 独立使用的方法,无需提供给WebRTC-Streamer使用的方法

如果是要交叉编译,需要执行

./build/linux/sysroot_scripts/install-sysroot.py --arch=arm          #32./build/linux/sysroot_scripts/install-sysroot.py --arch=arm64      #64
  • 1
  • 2

普通的交叉编译
第一步

gn gen out/linux_arm --args='target_os="linux" target_cpu="arm" use_custom_libcxx=false'   #32位
gn gen out/linux_arm64 --args='target_os="linux" target_cpu="arm64" use_custom_libcxx=false'   #64
  • 1
  • 2

第二步

ninja -C out/linux_arm  #32位
ninja -C out/linux_arm64 #64
  • 1
  • 2

2 提供给WebRTC-Streamer使用的方法

交叉编译命令
还可以是如下命令
假如是arm32下
第一步
gn gen out/Release --args=‘rtc_use_x11=false rtc_use_pipewire=false is_clang=true use_sysroot=false target_cpu=“arm” is_chrome_branded=true is_debug=false use_custom_libcxx=false rtc_include_tests=false rtc_enable_protobuf=false rtc_build_examples=false rtc_build_tools=false treat_warnings_as_errors=false rtc_enable_libevent=false rtc_build_libevent=false use_ozone=true rtc_build_json=true’

第二步
ninja -C out/Release webrtc rtc_json jsoncpp builtin_video_decoder_factory builtin_video_encoder_factory peerconnection p2p_server_utils task_queue default_task_queue_factory

四、开始编译WebRTC-Streamer

以arm32为例

cmake -DCMAKE_SYSTEM_PROCESSOR=armv7l -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_C_COMPILER=/home/a/tool/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc -DCMAKE_CXX_COMPILER=/home/a/tool/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin/arm-linux-gnueabihf-g++ -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY -DWEBRTCOZONE=Yes -DWEBRTCDESKTOPCAPTURE=OFF .

以上编译命令类似

set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR arm)

set(tools /home/a/tool/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/)
set(CMAKE_C_COMPILER ${tools}/bin/arm-linux-gnueabihf-gcc)
set(CMAKE_CXX_COMPILER ${tools}/bin/arm-linux-gnueabihf-g++)

set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

可选的

set(CMAKE_SYSROOT /home/devel/rasp-pi-rootfs)
set(CMAKE_STAGING_PREFIX /home/devel/stage)
  • 1
  • 2

如果不想写这么长的工具路径,可以如下操作
在这里插入图片描述

usr/local/下建立一个arm32文件夹,将工具拷贝进去
编辑~/.bashrc加上一句

export PATH=$PATH:/usr/local/arm32/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin
  • 1

五、以下是不同版本的编译,可能出现的错误和解决方案

问题1缺少rtmp

In file included from /home/a/source/webrtc-streamer/inc/CapturerFactory.h:34,
                 from /home/a/source/webrtc-streamer/src/PeerConnectionManager.cpp:26:
/home/a/source/webrtc-streamer/inc/rtmpvideosource.h:32:10: 致命错误: librtmp/rtmp.h:没有那个文件或目录
 #include <librtmp/rtmp.h>
          ^~~~~~~~~~~~~~~~
编译中断。
CMakeFiles/webrt
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

方式1:
下载

http://rtmpdump.mplayerhq.hu/download/
rtmpdump-2.3
  • 1
  • 2

放置到

librtmp
/home/a/source/webrtc-streamer/inc/librtmp
  • 1
  • 2

然后再解决链接问题

arm-linux-gnueabihf/bin/ld: cannot find -lrtmp
arm-linux-gnueabihf/bin/ld: cannot find -lz
arm-linux-gnueabihf/bin/ld: cannot find -lgmp
  • 1
  • 2
  • 3

方式2
不使用rtmp
更改CMakeList.txt

# rtmp ?
# find_package(PkgConfig QUIET)
# pkg_check_modules(RTMP QUIET librtmp)
# MESSAGE("RTMP_FOUND = ${RTMP_FOUND}")
# if (RTMP_FOUND)
#   add_definitions(-DHAVE_RTMP)
#   target_link_libraries (${CMAKE_PROJECT_NAME} ${RTMP_LIBRARIES}) 
# endif()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

问题 2 链接问题

arm-linux-gnueabihf/bin/ld: cannot find -lX11
arm-linux-gnueabihf/bin/ld: cannot find -lXext
arm-linux-gnueabihf/bin/ld: cannot find -lXdamage
arm-linux-gnueabihf/bin/ld: cannot find -lXfixes
arm-linux-gnueabihf/bin/ld: cannot find -lXcomposite
arm-linux-gnueabihf/bin/ld: cannot find -lXrandr
arm-linux-gnueabihf/bin/ld: cannot find -lXtst
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

通过查看CMakeLists.txt x11需要 X11 Xext Xdamage Xfixes Xcomposite Xrandr Xtst

  if (EXISTS ${WEBRTCROOT}/src/out/${CMAKE_BUILD_TYPE}/obj/modules/desktop_capture/desktop_capture.ninja)
        add_definitions(-DUSE_X11)
        target_link_libraries (${CMAKE_PROJECT_NAME} X11 Xext Xdamage Xfixes Xcomposite Xrandr Xtst)
    endif()
  • 1
  • 2
  • 3
  • 4

简单的方法就是除去 x11 dep

webrtc增加参数

gn gen out/Release --args增加参数 use_ozone=true rtc_use_x11=false
  • 1

webrtc-streamer的编译增加参数

cmake -DCMAKE_SYSTEM_PROCESSOR=armv7l -DWEBRTCOZONE=Yes -DWEBRTCDESKTOPCAPTURE=OFF .
  • 1

问题3 live555helper

错误提示

struct std::atomic_flag’ has no member named ‘test’
  • 1

详细的是

/home/a/source/webrtc-streamer/live/BasicUsageEnvironment/BasicTaskScheduler.cpp: 在成员函数‘virtual void BasicTaskScheduler::SingleStep(unsigned int)’中:
/home/a/source/webrtc-streamer/live/BasicUsageEnvironment/BasicTaskScheduler.cpp:191:40: 错误: ‘struct std::atomic_flaghas no member namedtestif (fTriggersAwaitingHandling[i].test()) {
                                        ^~~~
live555helper/CMakeFiles/liblive555helper.dir/build.make:89: recipe for target 'live555helper/CMakeFiles/liblive555helper.dir/__/live/BasicUsageEnvironment/BasicTaskScheduler.cpp.o' failed
make[2]: *** [live555helper/CMakeFiles/liblive555helper.dir/__/live/BasicUsageEnvironment/BasicTaskScheduler.cpp.o] Error 1
make[2]: *** 正在等待未完成的任务....
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

解决方法
增加NO_STD_LIB=1 或者 -DNO_STD_LIB

可以根据自己所需的系统更改

编译最后更改如下



if (WIN32)
	target_compile_definitions(liblive555helper PUBLIC _CRT_SECURE_NO_WARNINGS=1 NO_GETIFADDRS=1)
	target_link_libraries (liblive555helper ws2_32)
elseif (APPLE)
	target_compile_definitions(liblive555helper PUBLIC BSD=1 SOCKLEN_T=socklen_t _FILE_OFFSET_BITS=64 _LARGEFILE_SOURCE=1 NEED_XLOCALE_H=1)
else ()
	target_compile_definitions(liblive555helper PUBLIC BSD=1 SOCKLEN_T=socklen_t _FILE_OFFSET_BITS=64 _LARGEFILE_SOURCE=1 NO_STD_LIB=1)
endif()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

问题4 WebRTC和WebRTC-Streamer两者版本,其中之一过旧或者过新问题

示例1

:208:18: 错误: ‘class rtc::Threadhas no member namedInvokem_workerThread->Invoke<void>(RTC_FROM_HERE, [this, audioLayer] {
                  ^~~~~~
:208:25: 错误: expected primary-expression before ‘void’
  m_workerThread->Invoke<void>(RTC_FROM_HERE, [this, audioLayer] {
                         ^~~~
:210:6: 错误: expected primary-expression before ‘)’ token
     });
      ^
: 在析构函数‘virtual PeerConnectionManager::~PeerConnectionManager()’中:
:340:18: 错误: ‘class rtc::Threadhas no member namedInvokem_workerThread->Invoke<void>(RTC_FROM_HERE, [this] {
                  ^~~~~~
:340:25: 错误: expected primary-expression before ‘void’
  m_workerThread->Invoke<void>(RTC_FROM_HERE, [this] {
                         ^~~~
:342:6: 错误: expected primary-expression before ‘)’ token
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

示例2

../../modules/audio_processing/agc2/adaptive_digital_gain_controller_unittest.cc:107:41: error: no member named 'log10f' in namespace 'std'; did you mean simply 'log10f'?
  107 |   const float applied_gain_db = 20.0f * std::log10f(applied_gain);
      |                                         ^~~~~~~~~~~
      |                                         log10f
../../build/linux/debian_bullseye_armhf-sysroot/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:107:1: note: 'log10f' declared here
  107 | __MATHCALL (log10,, (_Mdouble_ __x));
      | ^
../../build/linux/debian_bullseye_armhf-sysroot/usr/include/math.h:273:3: note: expanded from macro '__MATHCALL'
  273 |   __MATHDECL (_Mdouble_,function,suffix, args)
      |   ^
../../build/linux/debian_bullseye_armhf-sysroot/usr/include/math.h:275:3: note: expanded from macro '__MATHDECL'
  275 |   __MATHDECL_1(type, function,suffix, args); \
      |   ^
../../build/linux/debian_bullseye_armhf-sysroot/usr/include/math.h:283:15: note: expanded from macro '__MATHDECL_1'
  283 |   extern type __MATH_PRECNAME(function,suffix) args __THROW
      |               ^
../../build/linux/debian_bullseye_armhf-sysroot/usr/include/math.h:303:34: note: expanded from macro '__MATH_PRECNAME'
  303 | # define __MATH_PRECNAME(name,r) name##f##r
      |                                  ^
<scratch space>:211:1: note: expanded from here
  211 | log10f
      | ^
1 error generated.

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

问题5 未安装工具的错误

例如
pkg-config

ERROR at //build/config/linux/pkg_config.gni:104:17: Script returned non-zero exit code.
    pkgresult = exec_script(pkg_config_script, args, "json")
                ^----------
Current dir: /home/a/source/webrtc/src/out/linux_arm/
Command: python3 /home/a/source/webrtc/src/build/config/linux/pkg-config.py -s /home/a/source/webrtc/src/build/linux/debian_bullseye_armhf-sysroot -a arm gmodule-2.0 gthread-2.0 gtk+-3.0
Returned 1.
stderr:

Traceback (most recent call last):
  File "/home/a/source/webrtc/src/build/config/linux/pkg-config.py", line 247, in <module>
    sys.exit(main())
  File "/home/a/source/webrtc/src/build/config/linux/pkg-config.py", line 142, in main
    prefix = GetPkgConfigPrefixToStrip(options, args)
  File "/home/a/source/webrtc/src/build/config/linux/pkg-config.py", line 81, in GetPkgConfigPrefixToStrip
    "--variable=prefix"] + args, env=os.environ).decode('utf-8')
  File "/usr/lib/python3.6/subprocess.py", line 356, in check_output
    **kwargs).stdout
  File "/usr/lib/python3.6/subprocess.py", line 423, in run
    with Popen(*popenargs, **kwargs) as process:
  File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
    restore_signals, start_new_session)
  File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'pkg-config': 'pkg-config'

See //examples/BUILD.gn:665:5: whence it was called.
    pkg_config("gtk_config") {
    ^-------------------------
See //BUILD.gn:42:17: which caused the file to be included.
      deps += [ "examples" ]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

dataclasses

ninja -C out/linux_arm
ninja: Entering directory `out/linux_arm'
[122/6960] ACTION //experiments:regist...der(//build/toolchain/linux:clang_arm)
FAILED: gen/experiments/registered_field_trials.h 
python3 ../../experiments/field_trials.py header --output gen/experiments/registered_field_trials.h
Traceback (most recent call last):
  File "../../experiments/field_trials.py", line 15, in <module>
    import dataclasses
ModuleNotFoundError: No module named 'dataclasses'
[131/6960] CXX obj/logging/fake_rtc_event_log/fake_rtc_event_log.o
ninja: build stopped: subcommand failed.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

问题6 编译工具与代码版本问题

例如webrtc使用旧代码时,gn版本过高导致的错误
降低gn版本

:~/source/webrtc/src$ gn gen out/Default
ERROR at //build/config/BUILDCONFIG.gn:401:1: Unknown function.
set_sources_assignment_filter(sources_assignment_filter)
  • 1
  • 2
  • 3
 gn --version
2119 (cc56a0f98bb3)
  • 1
  • 2

问题7 使用clang或者gcc不同编译器编译的情况

在这里插入图片描述

LLVM: clang / clang++(https://clang.llvm.org/)
GNU: gcc / g++( https://gcc.gnu.org/)

同样 的编译参数-std=c++17在默认的情况下,是用了不同的标准库

g++ with libstdc++ (by default)
clang++ with libc++ (by default)
  • 1
  • 2

在使用gcc编译的情况下,使用系统级别的函数时ibstdc++会调用glibc,Host上的gcc如果使用的glibc过高,到了Target就运行不起来

CentOS版本docker 运行

sudo yum install -y yum-utils
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
sudo yum install docker-ce docker-ce-cli containerd.io
sudo systemctl start docker
sudo docker run hello-world
sudo docker run -p 8000:8000 -v $PWD/config.json:/app/config.json mpromonet/webrtc-streamer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

参考
https://webrtc.org.cn/mirror/
https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/797574
推荐阅读
相关标签
  

闽ICP备14008679号