0

我正在尝试将 WebRTC 集成到一个 OSX 桌面应用程序中,当我尝试与 webRTC 库链接时遇到了一些错误。问题是:

Undefined symbols for architecture x86_64:
  "_AVMediaTypeMuxed", referenced from:
  cricket::GetAVFoundationVideoDevices(std::vector<cricket::Device, std::allocator<cricket::Device> >*) in libWebRTC-arm64-debug.a(libjingle_media.macdevicemanagermm.o)

这告诉我,我没有在我的 中定义这个符号libjingle_media.a,这是真的:

$ nm libjingle_media.a | grep _AVMediaTypeMuxed
warning: /Applications/Xcode64.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm: no name list
             U _AVMediaTypeMuxed

我已经使用以下标志构建了 WebRTC:

GYP_DEFINES="build_with_libjingle=1 build_with_chromium=0 libjingle_objc=1 OS=mac target_arch=x64"
GYP_GENERATORS="ninja"
GYP_GENERATOR_FLAGS="$GYP_GENERATOR_FLAGS output_dir=out_mac"

当然还有ninja,之前运行过gclient runhooks。知道发生了什么吗?

4

1 回答 1

0

要解决此问题,您需要使用实现该功能的特定框架,在这种情况下,一个名为AVFoundation

于 2016-01-21T11:59:06.610 回答