Changeset 910 for pjproject/trunk
- Timestamp:
- Jan 27, 2007 6:09:28 PM (18 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure
r862 r910 1440 1440 NONENONEs,x,x, && 1441 1441 program_prefix=${target_alias}- 1442 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjsip/include/pjsip/sip_autoconf.h"1442 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjmedia/include/pjmedia/config_auto.h pjmedia/include/pjmedia-codec/config_auto.h pjsip/include/pjsip/sip_autoconf.h" 1443 1443 1444 1444 ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak" … … 8474 8474 if test "$enable_g711_codec" = "no"; then 8475 8475 ac_no_g711_codec=1 8476 cat >>confdefs.h <<\_ACEOF 8477 #define PJMEDIA_HAS_G711_CODEC 0 8478 _ACEOF 8479 8476 8480 echo "$as_me:$LINENO: result: Checking if G.711 codec is disabled...yes" >&5 8477 8481 echo "${ECHO_T}Checking if G.711 codec is disabled...yes" >&6 … … 8489 8493 if test "$enable_l16_codec" = "no"; then 8490 8494 ac_no_l16_codec=1 8495 cat >>confdefs.h <<\_ACEOF 8496 #define PJMEDIA_HAS_L16_CODEC 0 8497 _ACEOF 8498 8491 8499 echo "$as_me:$LINENO: result: Checking if L16 codecs are disabled...yes" >&5 8492 8500 echo "${ECHO_T}Checking if L16 codecs are disabled...yes" >&6 … … 8504 8512 if test "$enable_gsm_codec" = "no"; then 8505 8513 ac_no_gsm_codec=1 8514 cat >>confdefs.h <<\_ACEOF 8515 #define PJMEDIA_HAS_GSM_CODEC 0 8516 _ACEOF 8517 8506 8518 echo "$as_me:$LINENO: result: Checking if GSM codec is disabled...yes" >&5 8507 8519 echo "${ECHO_T}Checking if GSM codec is disabled...yes" >&6 … … 8518 8530 if test "$enable_speex_codec" = "no"; then 8519 8531 ac_no_speex_codec=1 8532 cat >>confdefs.h <<\_ACEOF 8533 #define PJMEDIA_HAS_SPEEX_CODEC 0 8534 _ACEOF 8535 8520 8536 echo "$as_me:$LINENO: result: Checking if Speex codec is disabled...yes" >&5 8521 8537 echo "${ECHO_T}Checking if Speex codec is disabled...yes" >&6 … … 8532 8548 if test "$enable_ilbc_codec" = "no"; then 8533 8549 ac_no_ilbc_codec=1 8550 cat >>confdefs.h <<\_ACEOF 8551 #define PJMEDIA_HAS_ILBC_CODEC 0 8552 _ACEOF 8553 8534 8554 echo "$as_me:$LINENO: result: Checking if iLBC codec is disabled...yes" >&5 8535 8555 echo "${ECHO_T}Checking if iLBC codec is disabled...yes" >&6 … … 9501 9521 "pjlib/include/pj/compat/os_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/os_auto.h" ;; 9502 9522 "pjlib/include/pj/compat/m_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjlib/include/pj/compat/m_auto.h" ;; 9523 "pjmedia/include/pjmedia/config_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia/config_auto.h" ;; 9524 "pjmedia/include/pjmedia-codec/config_auto.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjmedia/include/pjmedia-codec/config_auto.h" ;; 9503 9525 "pjsip/include/pjsip/sip_autoconf.h" ) CONFIG_HEADERS="$CONFIG_HEADERS pjsip/include/pjsip/sip_autoconf.h" ;; 9504 9526 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -
pjproject/trunk/pjmedia/include/pjmedia
-
Property
svn:ignore
set to
config_auto.h
-
Property
svn:ignore
set to
-
pjproject/trunk/pjmedia/include/pjmedia-codec
-
Property
svn:ignore
set to
config_auto.h
-
Property
svn:ignore
set to
-
pjproject/trunk/pjsip-apps/src/samples/pjsip-perf.c
r815 r910 921 921 922 922 /* Must register all codecs to be supported */ 923 #if defined(PJMEDIA_HAS_G711_CODEC) && PJMEDIA_HAS_G711_CODEC!=0 923 924 pjmedia_codec_g711_init(app.med_endpt); 925 #endif 926 #if defined(PJMEDIA_HAS_GSM_CODEC) && PJMEDIA_HAS_GSM_CODEC!=0 924 927 pjmedia_codec_gsm_init(app.med_endpt); 928 #endif 929 #if defined(PJMEDIA_HAS_SPEEX_CODEC) && PJMEDIA_HAS_SPEEX_CODEC!=0 925 930 pjmedia_codec_speex_init(app.med_endpt, PJMEDIA_SPEEX_NO_UWB, 3, 3); 926 931 #endif 927 932 928 933 /* Init dummy socket addresses */
Note: See TracChangeset
for help on using the changeset viewer.