forked from mirrors/linphone-iphone
Add configure switch to enable usage of g729 Annex B in RFC3389 Comfort Noise payload
This commit is contained in:
parent
119c596b9e
commit
80fe123e62
2 changed files with 11 additions and 1 deletions
10
configure.ac
10
configure.ac
|
|
@ -638,6 +638,16 @@ AC_ARG_ENABLE(dtls,
|
|||
[dtls=false]
|
||||
)
|
||||
|
||||
AC_ARG_ENABLE(g729bCN,
|
||||
[AS_HELP_STRING([--enable-g729bCN], [Turn on or off usage of G729AnnexB in RFC3389 implementation of Comfort Noise Payload (default=no)])],
|
||||
[case "${enableval}" in
|
||||
yes) g729bCN=true ;;
|
||||
no) g729bCN=false ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-g729bCN) ;;
|
||||
esac],
|
||||
[g729bCN=false]
|
||||
)
|
||||
|
||||
dnl build console if required
|
||||
AM_CONDITIONAL(BUILD_CONSOLE, test x$console_ui = xtrue)
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 3d23e9d8aee73fae6fc6bf68f432d43c00828c96
|
||||
Subproject commit 680421e382ac666d58866f00e1ac5693d939fc07
|
||||
Loading…
Add table
Reference in a new issue