forked from mirrors/linphone-iphone
settings: change video codecs order from MPEG4 -> H264 -> VP8 to VP8 -> H264 -> MPEG4
This commit is contained in:
parent
c078294f13
commit
9e5e47a2bc
4 changed files with 10 additions and 10 deletions
|
|
@ -118,8 +118,8 @@
|
|||
}
|
||||
|
||||
- (BOOL)isValid {
|
||||
BOOL hasName = (_contact.firstName.length + _contact.lastName.length > 0)BOOL hasAddr =
|
||||
((NSString *)_contact.phoneNumbers[0]).length + ((NSString *)_contact.sipAddresses[0]).length > 0;
|
||||
BOOL hasName = (_contact.firstName.length + _contact.lastName.length > 0);
|
||||
BOOL hasAddr = ((NSString *)_contact.phoneNumbers[0]).length + ((NSString *)_contact.sipAddresses[0]).length > 0;
|
||||
return hasName && hasAddr;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -140,11 +140,11 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>DefaultValue</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>Key</key>
|
||||
<string>mp4v-es_preference</string>
|
||||
<string>vp8_preference</string>
|
||||
<key>Title</key>
|
||||
<string>MPEG-4</string>
|
||||
<string>VP8</string>
|
||||
<key>Type</key>
|
||||
<string>PSToggleSwitchSpecifier</string>
|
||||
</dict>
|
||||
|
|
@ -160,11 +160,11 @@
|
|||
</dict>
|
||||
<dict>
|
||||
<key>DefaultValue</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>Key</key>
|
||||
<string>vp8_preference</string>
|
||||
<string>mp4v-es_preference</string>
|
||||
<key>Title</key>
|
||||
<string>VP8</string>
|
||||
<string>MPEG-4</string>
|
||||
<key>Type</key>
|
||||
<string>PSToggleSwitchSpecifier</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit ae856fa959a93ca6a9abc9b37cf27100cbf2a60d
|
||||
Subproject commit 681d6a7c024dc4a7b42368493b49541d9e8f3d75
|
||||
|
|
@ -1 +1 @@
|
|||
Subproject commit 6574a95fd755216b8b91616772cdf4f986214cc6
|
||||
Subproject commit 49d0eadbab1f10439fb68994f6d34585baff3487
|
||||
Loading…
Add table
Reference in a new issue