Ignore:
Timestamp:
Aug 16, 2007 10:11:44 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: continuing work to port the Symbian libraries to .DSO format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/echo_suppress.c

    r1266 r1417  
    2626#include <pj/pool.h> 
    2727 
     28#include "echo_internal.h" 
    2829 
    2930#define THIS_FILE                           "echo_suppress.c" 
     
    4142    unsigned             tail_ms; 
    4243} echo_supp; 
    43  
    44  
    45  
    46 /* 
    47  * Prototypes. 
    48  */ 
    49 PJ_DECL(pj_status_t) echo_supp_create(pj_pool_t *pool, 
    50                                       unsigned clock_rate, 
    51                                       unsigned samples_per_frame, 
    52                                       unsigned tail_ms, 
    53                                       unsigned latency_ms, 
    54                                       unsigned options, 
    55                                       void **p_state ); 
    56 PJ_DECL(pj_status_t) echo_supp_destroy(void *state); 
    57 PJ_DECL(pj_status_t) echo_supp_playback(void *state, 
    58                                         pj_int16_t *play_frm ); 
    59 PJ_DECL(pj_status_t) echo_supp_capture(void *state, 
    60                                        pj_int16_t *rec_frm, 
    61                                        unsigned options ); 
    62 PJ_DECL(pj_status_t) echo_supp_cancel_echo(void *state, 
    63                                            pj_int16_t *rec_frm, 
    64                                            const pj_int16_t *play_frm, 
    65                                            unsigned options, 
    66                                            void *reserved ); 
    6744 
    6845 
Note: See TracChangeset for help on using the changeset viewer.