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_speex.c

    r1266 r1417  
    2929#include <speex/speex_preprocess.h> 
    3030 
     31#include "echo_internal.h" 
    3132 
    3233#define THIS_FILE       "echo_speex.c" 
     
    226227    return PJ_SUCCESS; 
    227228} 
    228  
    229 /* 
    230  * Prototypes 
    231  */ 
    232 PJ_DECL(pj_status_t) speex_aec_create(pj_pool_t *pool, 
    233                                       unsigned clock_rate, 
    234                                       unsigned samples_per_frame, 
    235                                       unsigned tail_ms, 
    236                                       unsigned latency_ms, 
    237                                       unsigned options, 
    238                                       void **p_state ); 
    239 PJ_DECL(pj_status_t) speex_aec_destroy(void *state ); 
    240 PJ_DECL(pj_status_t) speex_aec_playback(void *state, 
    241                                         pj_int16_t *play_frm ); 
    242 PJ_DECL(pj_status_t) speex_aec_capture(void *state, 
    243                                        pj_int16_t *rec_frm, 
    244                                        unsigned options ); 
    245 PJ_DECL(pj_status_t) speex_aec_cancel_echo(void *state, 
    246                                            pj_int16_t *rec_frm, 
    247                                            const pj_int16_t *play_frm, 
    248                                            unsigned options, 
    249                                            void *reserved ); 
    250  
    251229 
    252230enum 
Note: See TracChangeset for help on using the changeset viewer.