summaryrefslogtreecommitdiffstats
path: root/src/sys_settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys_settings.cpp')
-rw-r--r--src/sys_settings.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sys_settings.cpp b/src/sys_settings.cpp
index abca6e0..175ac4f 100644
--- a/src/sys_settings.cpp
+++ b/src/sys_settings.cpp
@@ -1056,6 +1056,11 @@ string t_sys_settings::about(bool html) const {
if (html) s += "<BR>";
s += "\n";
#endif
+#ifdef HAVE_BCG729
+ s += TRANSLATE("* G729A codec (http://www.linphone.org/technical-corner/bcg729/overview");
+ if (html) s += "<BR>";
+ s += "\n";
+#endif
s += TRANSLATE("* Parts of the STUN project at http://sourceforge.net/projects/stun");
if (html) s += "<BR>";
@@ -1147,6 +1152,10 @@ string t_sys_settings::get_options_built(void) const {
if (!options_built.empty()) options_built += ", ";
options_built += "iLBC";
#endif
+#ifdef HAVE_BCG729
+ if (!options_built.empty()) options_built += ", ";
+ options_built += "G729";
+#endif
#ifdef HAVE_ZRTP
if (!options_built.empty()) options_built += ", ";
options_built += "ZRTP";