Ignore:
Timestamp:
May 11, 2007 3:14:34 PM (17 years ago)
Author:
bennylp
Message:

HUGE changeset to make the rest of the libraries compile with C++ mode

File:
1 edited

Legend:

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

    r974 r1266  
    8686    PJ_UNUSED_ARG(latency_ms); 
    8787 
    88     ec = pj_pool_zalloc(pool, sizeof(struct echo_supp)); 
     88    ec = PJ_POOL_ZALLOC_T(pool, struct echo_supp); 
    8989    ec->samples_per_frame = samples_per_frame; 
    9090    ec->tail_ms = tail_ms; 
     
    120120                                        pj_int16_t *play_frm ) 
    121121{ 
    122     echo_supp *ec = state; 
     122    echo_supp *ec = (echo_supp*) state; 
    123123    pj_bool_t silence; 
    124124    pj_bool_t last_suppressing = ec->suppressing; 
     
    150150                                       unsigned options ) 
    151151{ 
    152     echo_supp *ec = state; 
     152    echo_supp *ec = (echo_supp*) state; 
    153153    pj_time_val now; 
    154154    unsigned delay_ms; 
     
    186186                                           void *reserved ) 
    187187{ 
    188     echo_supp *ec = state; 
     188    echo_supp *ec = (echo_supp*) state; 
    189189    pj_bool_t silence; 
    190190 
Note: See TracChangeset for help on using the changeset viewer.