From 1b2469b8787678cd7220b4f34bd3193fe2477363 Mon Sep 17 00:00:00 2001 From: hansknoechel92 Date: Wed, 21 Jun 2017 03:44:05 -0700 Subject: [PATCH] Fix AVFoundation framework import When building the WebRTC project for iOS, the build will fail on Xcode 9 because of a missing framework-header (AVFoundation). This pull-request will add the missing "#import " line to the "RTCCameraVideoCapturer" class. BUG=webrtc:7846 Review-Url: https://codereview.webrtc.org/2944753002 Cr-Commit-Position: refs/heads/master@{#18698} --- AUTHORS | 1 + .../sdk/objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h | 1 + 2 files changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index 4b387ed5d0..cb537cfcdc 100644 --- a/AUTHORS +++ b/AUTHORS @@ -51,6 +51,7 @@ Vladimir Beloborodov Vicken Simonian Victor Costan Xiaohong Xu +Hans Knoechel &yet LLC <*@andyet.com> Agora IO <*@agora.io> diff --git a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h index 973452707c..943ddc8685 100644 --- a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h +++ b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCCameraVideoCapturer.h @@ -9,6 +9,7 @@ */ #import +#import #import #import