Ignore:
Timestamp:
Oct 6, 2015 5:57:51 AM (9 years ago)
Author:
ming
Message:

Fixed #1888: Support for WebRtc? AEC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/echo_internal.h

    r4622 r5186  
    7878                                         void *reserved ); 
    7979 
     80PJ_DECL(pj_status_t) webrtc_aec_create(pj_pool_t *pool, 
     81                                       unsigned clock_rate, 
     82                                       unsigned channel_count, 
     83                                       unsigned samples_per_frame, 
     84                                       unsigned tail_ms, 
     85                                       unsigned options, 
     86                                       void **p_echo ); 
     87PJ_DECL(pj_status_t) webrtc_aec_destroy(void *state ); 
     88PJ_DECL(void) webrtc_aec_reset(void *state ); 
     89PJ_DECL(pj_status_t) webrtc_aec_cancel_echo(void *state, 
     90                                            pj_int16_t *rec_frm, 
     91                                            const pj_int16_t *play_frm, 
     92                                            unsigned options, 
     93                                            void *reserved ); 
     94 
    8095 
    8196PJ_END_DECL 
Note: See TracChangeset for help on using the changeset viewer.