Changeset 2497
- Timestamp:
- Mar 10, 2009 1:28:43 PM (16 years ago)
- Location:
- pjproject/branches/projects/aps-direct/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/aps-direct/pjsip/include/pjsua-lib/pjsua.h
r2493 r2497 4906 4906 4907 4907 /** 4908 * Change the echo cancellation settings. Application may also use the 4909 * #pjsua_snd_set_setting() to retrieve the echo cancellation setting. 4908 * Change the echo cancellation settings. 4910 4909 * 4911 4910 * The behavior of this function depends on whether the sound device is … … 4940 4939 4941 4940 /** 4942 * Get current echo canceller tail length. Application may also use the 4943 * #pjsua_snd_set_setting() to retrieve the echo cancellation setting. 4941 * Get current echo canceller tail length. 4944 4942 * 4945 4943 * @param p_tail_ms Pointer to receive the tail length, in miliseconds. … … 4980 4978 * used. 4981 4979 * 4980 * Note also that the echo cancellation setting should be set with 4981 * #pjsua_set_ec() API instead. 4982 * 4982 4983 * See also #pjmedia_aud_stream_set_cap() for more information about setting 4983 4984 * an audio device capability. … … 5003 5004 * Otherwise, this function will return error. 5004 5005 * 5006 * Note that echo cancellation settings should be retrieved with 5007 * #pjsua_get_ec_tail() API instead. 5008 * 5005 5009 * @param cap The sound device setting to retrieve. 5006 5010 * @param pval Pointer to receive the value. -
pjproject/branches/projects/aps-direct/pjsip/src/pjsua-lib/pjsua_media.c
r2496 r2497 77 77 PJMEDIA_AUD_DEV_CAP_INPUT_SIGNAL_METER | 78 78 PJMEDIA_AUD_DEV_CAP_OUTPUT_SIGNAL_METER); 79 /* EC settings use different API */ 80 pjsua_var.aud_svmask &= ~(PJMEDIA_AUD_DEV_CAP_EC | 81 PJMEDIA_AUD_DEV_CAP_EC_TAIL); 79 82 80 83 /* Copy configuration */
Note: See TracChangeset
for help on using the changeset viewer.