-
Notifications
You must be signed in to change notification settings - Fork 2
Sync with SendBirdWebRTC 1.1.1 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,3 +71,4 @@ | |
/xcodebuild | ||
/.vscode | ||
!webrtc/* | ||
out_ios_libs |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,8 +33,8 @@ | |
SDK_FRAMEWORK_NAME = 'WebRTC.framework' | ||
|
||
DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'arm', 'x64', 'x86'] | ||
IOS_DEPLOYMENT_TARGET = '10.0' | ||
LIBVPX_BUILD_VP9 = False | ||
IOS_DEPLOYMENT_TARGET = '9.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Target 은 왜 10에서 9로 변경되었나요? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저희 sdk 미니멈 버전이 9.0이라서 이것도 같이 맞췄습니당 |
||
LIBVPX_BUILD_VP9 = True | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 엇 이제 VP9도 지원하나요? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 앗 vp9은 전부터 지원했었습니다 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
저희 iOS VP8이랑 H.264는 지원하는데 VP9 지원안하고 있지 않았었나요? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 전에도 키고 빌드했었는데, 없었나요....? 😨 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 음 그러면 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. LIBVPX_BUILD_VP9 를 키면 VP9을 사용가능하게 하는거에용...뭐지.. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 그렇군요. VP9가 이전엔 False였는데 지원했다구 해서 이해차 다시 여쭤보았습니다. 감사합니다. + Approve |
||
|
||
sys.path.append(os.path.join(SCRIPT_DIR, '..', 'libs')) | ||
from generate_licenses import LicenseBuilder | ||
|
@@ -59,7 +59,7 @@ def _ParseArgs(): | |
'If specified together with -c, deletes the dir.') | ||
parser.add_argument('-r', '--revision', type=int, default=0, | ||
help='Specifies a revision number to embed if building the framework.') | ||
parser.add_argument('-e', '--bitcode', action='store_true', default=False, | ||
parser.add_argument('-e', '--bitcode', action='store_true', default=True, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. default 값의 false와 true 차이가 무엇인가요?? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 저 플래그가 빌드할때 --bitcode를 입력하면 bitcode가 켜지고 입력안하면 디폴트로 bitcode를 키지 않는건데, 귀찮아서 --bitcode를 입력 안해도 비트코드가 켜지도록 바꿔놨습니다..ㅎ |
||
help='Compile with bitcode.') | ||
parser.add_argument('--verbose', action='store_true', default=False, | ||
help='Debug logging.') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
예전에 이 flag 가 없어서 stat interface 사용을 못했던 건가 보군요 👍