Changeset 2182
- Timestamp:
- Jul 28, 2008 11:40:58 PM (16 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/aconfigure
r1892 r2182 860 860 --disable-oss Disable OSS audio (default: not disabled) 861 861 862 --enable-ext-sound PJMEDIA will not provide any sound device backend 862 863 --disable-small-filter Exclude small filter in resampling 863 864 --disable-large-filter Exclude large filter in resampling … … 10206 10207 esac 10207 10208 fi 10209 10210 # Check whether --enable-ext_sound or --disable-ext_sound was given. 10211 if test "${enable_ext_sound+set}" = set; then 10212 enableval="$enable_ext_sound" 10213 if test "$enable_ext_sound" = "yes"; then 10214 ac_pjmedia_snd=external 10215 echo "$as_me:$LINENO: result: Checking if external sound is set... yes" >&5 10216 echo "${ECHO_T}Checking if external sound is set... yes" >&6 10217 fi 10218 10219 fi; 10208 10220 10209 10221 -
pjproject/trunk/aconfigure.ac
r1892 r2182 415 415 fi 416 416 417 AC_ARG_ENABLE(ext_sound, 418 AC_HELP_STRING([--enable-ext-sound], 419 [PJMEDIA will not provide any sound device backend]), 420 [if test "$enable_ext_sound" = "yes"; then 421 [ac_pjmedia_snd=external] 422 AC_MSG_RESULT([Checking if external sound is set... yes]) 423 fi] 424 ) 425 417 426 dnl # Include resampling small filter 418 427 AC_SUBST(ac_no_small_filter) -
pjproject/trunk/pjmedia/build/os-auto.mak.in
r1871 r2182 12 12 # - ds: Win32 DirectSound (dsound.c) 13 13 # - null: Null sound device (nullsound.c) 14 # - external: Link with no sounddev (app will provide) 14 15 AC_PJMEDIA_SND=@ac_pjmedia_snd@ 15 16 … … 91 92 92 93 # 93 # Last resort, null sound device94 # Null sound device 94 95 # 95 96 ifeq ($(AC_PJMEDIA_SND),null) … … 98 99 endif 99 100 101 # 102 # External sound device 103 # 104 ifeq ($(AC_PJMEDIA_SND),external) 105 export SOUND_OBJS = 106 export CFLAGS += -DPJMEDIA_SOUND_IMPLEMENTATION=PJMEDIA_SOUND_EXTERNAL 107 endif 100 108 109 -
pjproject/trunk/pjmedia/include/pjmedia/config.h
r2089 r2182 56 56 /** Constant for Win32 DirectSound sound backend. */ 57 57 #define PJMEDIA_SOUND_WIN32_DIRECT_SOUND 2 58 59 /** When this is set, pjmedia will not provide any sound device backend. 60 * Application will have to provide its own sound device backend 61 * and link the application with it. 62 */ 63 #define PJMEDIA_SOUND_EXTERNAL 3 58 64 59 65 -
pjproject/trunk/pjsip-apps/build/Makefile
r2037 r2182 35 35 main.o pjsua_app.o 36 36 export PJSUA_CFLAGS += $(_CFLAGS) 37 export PJSUA_LDFLAGS += $(APP_LDFLAGS) $(APP_LDLIBS) 37 export PJSUA_LDFLAGS += $(APP_LDFLAGS) $(APP_LDLIBS) $(LDFLAGS) 38 38 export PJSUA_EXE:=../bin/pjsua-$(TARGET_NAME)$(HOST_EXE) 39 39
Note: See TracChangeset
for help on using the changeset viewer.