summaryrefslogtreecommitdiff
path: root/pjsip-apps
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2010-08-06 03:24:15 +0000
committerNanang Izzuddin <nanang@teluu.com>2010-08-06 03:24:15 +0000
commit1ae0e4c6b7cbdc633af0bcb3db35006166b0ce2b (patch)
treed34674fe62e9a162287d3cdb8f8c2da7a110333d /pjsip-apps
parentfd3a3799c53f7881760f22e12d414d5d3ce96a84 (diff)
Misc (re #1068): fix codec selection menu in symbian_ua app to hide disabled passthrough codecs.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3253 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps')
-rw-r--r--pjsip-apps/src/symbian_ua/ua.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjsip-apps/src/symbian_ua/ua.cpp b/pjsip-apps/src/symbian_ua/ua.cpp
index fb4b3c92..f38d2e64 100644
--- a/pjsip-apps/src/symbian_ua/ua.cpp
+++ b/pjsip-apps/src/symbian_ua/ua.cpp
@@ -646,13 +646,13 @@ static void PrintCodecMenu()
"\n\n"
"Codec Menu:\n"
" a Enable all codecs\n"
-#if PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR
+#if PJMEDIA_HAS_PASSTHROUGH_CODECS && PJMEDIA_HAS_PASSTHROUGH_CODEC_AMR
" d Enable only AMR\n"
#endif
-#if PJMEDIA_HAS_PASSTHROUGH_CODEC_G729
+#if PJMEDIA_HAS_PASSTHROUGH_CODECS && PJMEDIA_HAS_PASSTHROUGH_CODEC_G729
" g Enable only G.729\n"
#endif
-#if PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC
+#if PJMEDIA_HAS_PASSTHROUGH_CODECS && PJMEDIA_HAS_PASSTHROUGH_CODEC_ILBC
" j Enable only iLBC\n"
#endif
" m Enable only Speex\n"