Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit d44abbe

Browse files
committed
Fix import paths.
1 parent 471485e commit d44abbe

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

talk/owt/BUILD.gn

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ if (is_ios) {
339339
]
340340
include_dirs = [
341341
"//third_party",
342-
"//third_party/webrtc/sdk/objc/Framework/Headers",
343342
"sdk/include/cpp",
344343
"sdk/include/objc",
345344
]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// Copyright (C) <2018> Intel Corporation
22
//
33
// SPDX-License-Identifier: Apache-2.0
4-
#import <WebRTC/RTCVideoCodecFactory.h>
4+
5+
#import "WebRTC/RTCDefaultVideoDecoderFactory.h"
6+
57
RTC_OBJC_EXPORT
68
@interface OWTDefaultVideoDecoderFactory : RTCDefaultVideoDecoderFactory
79
@end

talk/owt/sdk/base/objc/OWTDefaultVideoDecoderFactory.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
//
33
// SPDX-License-Identifier: Apache-2.0
44

5-
#import "WebRTC/RTCVideoCodec.h"
6-
#import "WebRTC/RTCVideoCodecFactory.h"
5+
#import "WebRTC/RTCEncodedImage.h"
76
#if defined(OWT_USE_H265)
87
#import "WebRTC/RTCVideoCodecH265.h"
98
#endif

talk/owt/sdk/base/objc/OWTDefaultVideoEncoderFactory.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
// Copyright (C) <2018> Intel Corporation
22
//
33
// SPDX-License-Identifier: Apache-2.0
4-
#import <WebRTC/RTCVideoCodecFactory.h>
4+
5+
#import "WebRTC/RTCDefaultVideoEncoderFactory.h"
6+
57
RTC_OBJC_EXPORT
68
@interface OWTDefaultVideoEncoderFactory : RTCDefaultVideoEncoderFactory
79
@property(nonatomic, retain) RTCVideoCodecInfo* preferredCodec;

talk/owt/sdk/base/objc/OWTDefaultVideoEncoderFactory.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
//
33
// SPDX-License-Identifier: Apache-2.0
44

5-
#import "WebRTC/RTCVideoCodec.h"
6-
#import "WebRTC/RTCVideoCodecFactory.h"
5+
#import "WebRTC/RTCEncodedImage.h"
76
#if defined(OWT_USE_H265)
87
#import "WebRTC/RTCVideoCodecH265.h"
98
#endif

talk/owt/sdk/include/objc/OWT/RTCPeerConnectionFactory+OWT.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (C) <2018> Intel Corporation
22
//
33
// SPDX-License-Identifier: Apache-2.0
4-
#import "WebRTC/RTCPeerConnection.h"
54
#import "WebRTC/RTCPeerConnectionFactory.h"
65

76
@interface RTCPeerConnectionFactory (OWT)

0 commit comments

Comments
 (0)