Ignore:
Timestamp:
Mar 16, 2006 2:24:26 PM (18 years ago)
Author:
bennylp
Message:

Added misc flags and modify Makefiles to allow exclusion of PortAudio? and specific codec during compilation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r188 r320  
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
    1818 */ 
    19 #ifndef __PJMED_CONFIG_H__ 
    20 #define __PJMED_CONFIG_H__ 
     19#ifndef __PJMEDIA_CONFIG_H__ 
     20#define __PJMEDIA_CONFIG_H__ 
     21 
     22#include <pj/config.h> 
     23 
     24/** 
     25 * Unless specified otherwise, PortAudio is enabled by default. 
     26 */ 
     27#ifndef PJMEDIA_HAS_PORTAUDIO_SOUND 
     28#   define PJMEDIA_HAS_PORTAUDIO_SOUND      1 
     29#endif 
    2130 
    2231 
    23 #endif  /* __PJMED_CONFIG_H__ */ 
     32/** 
     33 * Unless specified otherwise, Null sound is disabled. 
     34 * This option is mutually exclusive with PortAudio sound, or otherwise 
     35 * duplicate symbols error will occur. 
     36 */ 
     37#ifndef PJMEDIA_HAS_NULL_SOUND 
     38#   define PJMEDIA_HAS_NULL_SOUND           0 
     39#endif 
     40 
     41 
     42/** 
     43 * Unless specified otherwise, G711 codec is included by default. 
     44 */ 
     45#ifndef PJMEDIA_HAS_G711_CODEC 
     46#   define PJMEDIA_HAS_G711_CODEC           1 
     47#endif 
     48 
     49 
     50#endif  /* __PJMEDIA_CONFIG_H__ */ 
Note: See TracChangeset for help on using the changeset viewer.