Ignore:
Timestamp:
Jul 28, 2008 11:40:58 PM (16 years ago)
Author:
bennylp
Message:

Ticket #463: Configuration option to have external sound device implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/build/os-auto.mak.in

    r1871 r2182  
    1212#   - ds:               Win32 DirectSound (dsound.c) 
    1313#   - null:             Null sound device (nullsound.c) 
     14#   - external:         Link with no sounddev (app will provide) 
    1415AC_PJMEDIA_SND=@ac_pjmedia_snd@ 
    1516 
     
    9192 
    9293# 
    93 # Last resort, null sound device 
     94# Null sound device 
    9495# 
    9596ifeq ($(AC_PJMEDIA_SND),null) 
     
    9899endif 
    99100 
     101# 
     102# External sound device 
     103# 
     104ifeq ($(AC_PJMEDIA_SND),external) 
     105export SOUND_OBJS =  
     106export CFLAGS += -DPJMEDIA_SOUND_IMPLEMENTATION=PJMEDIA_SOUND_EXTERNAL 
     107endif 
    100108 
     109 
Note: See TracChangeset for help on using the changeset viewer.