This repository was archived by the owner on Oct 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -339,6 +339,9 @@ if (is_ios) {
339
339
}
340
340
include_dirs = [
341
341
" //third_party" ,
342
+ " //third_party/webrtc/sdk/objc/api/peerconnection" ,
343
+ " //third_party/webrtc/sdk/objc/api/logging" ,
344
+ " //third_party/webrtc/sdk/objc/api/video_codec" ,
342
345
" sdk/include/cpp" ,
343
346
" sdk/include/objc" ,
344
347
]
Original file line number Diff line number Diff line change 2
2
//
3
3
// SPDX-License-Identifier: Apache-2.0
4
4
5
- #import " RTCDefaultVideoDecoderFactory.h"
5
+ #import " webrtc/sdk/objc/components/video_codec/ RTCDefaultVideoDecoderFactory.h"
6
6
7
7
RTC_OBJC_EXPORT
8
8
@interface OWTDefaultVideoDecoderFactory : RTCDefaultVideoDecoderFactory
Original file line number Diff line number Diff line change 2
2
//
3
3
// SPDX-License-Identifier: Apache-2.0
4
4
5
- #import " RTCDefaultVideoEncoderFactory.h"
5
+ #import " webrtc/sdk/objc/components/video_codec/ RTCDefaultVideoEncoderFactory.h"
6
6
7
7
RTC_OBJC_EXPORT
8
8
@interface OWTDefaultVideoEncoderFactory : RTCDefaultVideoEncoderFactory
Original file line number Diff line number Diff line change 4
4
#include < string>
5
5
#include < unordered_map>
6
6
#import < Foundation/Foundation.h>
7
- #import " RTCCameraVideoCapturer.h"
8
7
#import " RTCVideoSource.h"
9
8
#import " talk/owt/sdk/base/objc/OWTLocalStream+Private.h"
10
9
#import " talk/owt/sdk/base/objc/OWTMediaFormat+Private.h"
14
13
#import " talk/owt/sdk/include/objc/OWT/OWTMediaFormat.h"
15
14
#import " webrtc/sdk/objc/Framework/Classes/Common/NSString+StdString.h"
16
15
#import " webrtc/sdk/objc/api/peerconnection/RTCMediaStream+Private.h"
16
+ #import " webrtc/sdk/objc/components/capturer/RTCCameraVideoCapturer.h"
17
17
#include " webrtc/rtc_base/helpers.h"
18
18
@interface OWTLocalStream ()
19
19
- (NSString *)createRandomUuid ;
Original file line number Diff line number Diff line change 8
8
#include " webrtc/sdk/objc/Framework/Native/src/objc_video_encoder_factory.h"
9
9
#import " talk/owt/sdk/base/objc/OWTDefaultVideoDecoderFactory.h"
10
10
#import " talk/owt/sdk/base/objc/OWTDefaultVideoEncoderFactory.h"
11
- # import " RTCVideoCodecH264.h "
11
+
12
12
namespace owt {
13
13
namespace base {
14
14
std::unique_ptr<webrtc::VideoEncoderFactory>
You can’t perform that action at this time.
0 commit comments