recompiled opus for 64bit and added build scripts

This commit is contained in:
Diego Waxemberg
2014-10-21 03:15:29 -04:00
parent f4f3d7df50
commit 1f19d4de9d
13 changed files with 427 additions and 48 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ static NSData* p12 = nil;
- (int) getEncryptSize:(NSData*)data {
// the size is the length of the data ceiling to the nearest 16 bytes
return (([data length] + 15) / 16) * 16;
return (((int)[data length] + 15) / 16) * 16;
}
- (bool) verifySignature:(NSData *)data withSignature:(NSData*)signature andCert:(NSData*)cert {
+2 -2
View File
@@ -78,8 +78,8 @@ static StreamConfiguration* streamConfig;
streamConfig.host = _selectedHost.hostName;
streamConfig.hostAddr = [Utils resolveHost:_selectedHost.hostName];
int selectedConf = [self.StreamConfigs selectedRowInComponent:0];
NSLog(@"selectedConf: %d", selectedConf);
unsigned long selectedConf = [self.StreamConfigs selectedRowInComponent:0];
NSLog(@"selectedConf: %ld", selectedConf);
switch (selectedConf) {
case 0:
streamConfig.width = 1280;