forked from mirrors/linphone-iphone
Add possibility to change adaptive rate algorithm in audio settings
This commit is contained in:
parent
cf9359bf92
commit
2d879e19cc
5 changed files with 411 additions and 387 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -198,6 +198,26 @@
|
|||
<key>Type</key>
|
||||
<string>PSToggleSwitchSpecifier</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>DefaultValue</key>
|
||||
<string>Simple</string>
|
||||
<key>Key</key>
|
||||
<string>adaptive_rate_algorithm_preference</string>
|
||||
<key>Title</key>
|
||||
<string>Adaptive rate algorithm</string>
|
||||
<key>Titles</key>
|
||||
<array>
|
||||
<string>Simple</string>
|
||||
<string>Stateful</string>
|
||||
</array>
|
||||
<key>Type</key>
|
||||
<string>PSMultiValueSpecifier</string>
|
||||
<key>Values</key>
|
||||
<array>
|
||||
<string>Simple</string>
|
||||
<string>Stateful</string>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>DefaultValue</key>
|
||||
<integer>36</integer>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit ee99cb136b23558faadab3b0c654561f4a92e371
|
||||
Subproject commit fa1c112cb33d2c0a42b351652a4779a8aea77c56
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
############################################################################
|
||||
# Makefile
|
||||
# Makefile
|
||||
# Copyright (C) 2009 Belledonne Communications,Grenoble France
|
||||
#
|
||||
############################################################################
|
||||
|
|
@ -56,7 +56,7 @@ endif
|
|||
|
||||
ifeq ($(enable_gpl_third_parties),yes)
|
||||
warning:
|
||||
@echo
|
||||
@echo
|
||||
@echo "***************************************************************************"
|
||||
@echo "***************************************************************************"
|
||||
@echo "*****CAUTION, this liblinphone SDK is built using 3rd party GPL code ******"
|
||||
|
|
@ -68,7 +68,7 @@ warning:
|
|||
@echo "***************************************************************************"
|
||||
else
|
||||
warning:
|
||||
@echo
|
||||
@echo
|
||||
@echo "*****************************************************************"
|
||||
@echo "*****************************************************************"
|
||||
@echo "*****Linphone SDK without 3rd party GPL software ******"
|
||||
|
|
@ -84,17 +84,17 @@ LINPHONE_OPTIONS=enable_gpl_third_parties=$(enable_gpl_third_parties) \
|
|||
enable_debug=$(enable_debug) enable_ffmpeg=$(enable_ffmpeg) enable_tunnel=$(enable_tunnel)
|
||||
|
||||
|
||||
armv7-%:
|
||||
armv7-%:
|
||||
make -f builder-iphone-os.mk $(LINPHONE_OPTIONS) $*
|
||||
|
||||
armv7s-%:
|
||||
armv7s-%:
|
||||
make -f builder-iphone-os.mk host=armv7s-apple-darwin $(LINPHONE_OPTIONS) $*
|
||||
|
||||
simu-%:
|
||||
simu-%:
|
||||
make -f builder-iphone-simulator.mk $(LINPHONE_OPTIONS) $*
|
||||
|
||||
|
||||
build-% clean-% veryclean-%:
|
||||
build-% clean-% veryclean-%:
|
||||
make -f builder-iphone-simulator.mk $(LINPHONE_OPTIONS) $@ \
|
||||
&& make -f builder-iphone-os.mk $(LINPHONE_OPTIONS) $@ \
|
||||
&& make -f builder-iphone-os.mk host=armv7s-apple-darwin $(LINPHONE_OPTIONS) $@
|
||||
|
|
@ -106,8 +106,8 @@ broadcast_%:
|
|||
&& make -f builder-iphone-os.mk $(LINPHONE_OPTIONS) $* \
|
||||
&& make -f builder-iphone-os.mk host=armv7s-apple-darwin $(LINPHONE_OPTIONS) $*
|
||||
|
||||
sdk:
|
||||
make -f builder-iphone-os.mk delivery-sdk
|
||||
sdk:
|
||||
make -f builder-iphone-os.mk delivery-sdk
|
||||
|
||||
build: broadcast_all sdk
|
||||
|
||||
|
|
@ -119,7 +119,7 @@ veryclean: broadcast_veryclean
|
|||
|
||||
|
||||
zipres:
|
||||
@tar -C ../.. -czf ../../ios_assets.tar.gz Resources iTunesArtwork
|
||||
@tar -C ../.. -czf ../../ios_assets.tar.gz Resources iTunesArtwork
|
||||
@echo Archive 'ios_assets.tar.gz' placed in root directory
|
||||
|
||||
help:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 3c32fd43972ad9560f33e1f056ad7be694d8e685
|
||||
Subproject commit cb925cfff94bf0a2955271f953372d8e36d924f9
|
||||
Loading…
Add table
Reference in a new issue