Ignore:
Timestamp:
Jan 3, 2014 3:44:05 AM (10 years ago)
Author:
nanang
Message:

Close #1720:

  • Added configure flags --with-external-srtp and --disable-resample.
  • Added macro setting PJMEDIA_LIBSRTP_AUTO_INIT_DEINIT to allow application to handle libsrtp init & deinit by itself.
File:
1 edited

Legend:

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

    r4577 r4701  
    915915 
    916916/** 
     917 * Let the library handle libsrtp initialization and deinitialization. 
     918 * Application may want to disable this and manually perform libsrtp 
     919 * initialization and deinitialization when it needs to use libsrtp 
     920 * before the library is initialized or after the library is shutdown. 
     921 * 
     922 * By default it is enabled. 
     923 */ 
     924#ifndef PJMEDIA_LIBSRTP_AUTO_INIT_DEINIT 
     925#   define PJMEDIA_LIBSRTP_AUTO_INIT_DEINIT         1 
     926#endif 
     927 
     928 
     929/** 
    917930 * Enable support to handle codecs with inconsistent clock rate 
    918931 * between clock rate in SDP/RTP & the clock rate that is actually used. 
Note: See TracChangeset for help on using the changeset viewer.