-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathPrefixHeader.pch
More file actions
32 lines (23 loc) · 847 Bytes
/
PrefixHeader.pch
File metadata and controls
32 lines (23 loc) · 847 Bytes
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
31
32
//
// PrefixHeader.pch
// FFmpegTutorial-macOS
//
// Created by Matt Reach on 2020/12/11.
//
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.
#ifndef __MRWS__
#define __MRWS__
#ifndef __weakSelf__
#define __weakSelf__ __weak typeof(self)weakSelf = self;
#endif
#ifndef __strongSelf__
#define __strongSelf__ __strong typeof(weakSelf)self = weakSelf;
#endif
#define __weakObj(obj) __weak typeof(obj)weak##obj = obj;
#define __strongObj(obj) __strong typeof(weak##obj)obj = weak##obj;
#endif
#define KTestVideoURL1 @"http://docs.evostream.com/sample_content/assets/bunny.mp4"
#endif /* PrefixHeader_pch */