Changeset 1067:f2520466a485 in mediastreamer2


Ignore:
Timestamp:
Oct 8, 2010 3:47:08 PM (3 years ago)
Author:
Nikita Kozlov <nikita@…>
Branch:
default
Children:
1068:890bc2451116, 1074:18bd4cfab392
Message:

test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/msfilerec.c

    r1065 r1067  
    105105} 
    106106 
    107 static void rec_preprocess(MSFilter *f){ 
    108         rec_start(f, 0); 
    109 } 
    110  
    111 static void rec_postprocess(MSFilter *f){ 
    112         rec_stop(f, 0); 
    113 } 
    114  
    115  
    116107static void write_wav_header(int fd, int rate,int size){ 
    117108        wave_header_t header; 
     
    184175        0, 
    185176        rec_init, 
    186         rec_start, 
     177        NULL, 
    187178    rec_process, 
    188     rec_stop, 
     179    NULL, 
    189180    rec_uninit, 
    190181        rec_methods 
     
    201192        .noutputs=0, 
    202193        .init=rec_init, 
    203         .preprocess=rec_preprocess, 
    204194        .process=rec_process, 
    205         .postprocess=rec_postprocess, 
    206195        .uninit=rec_uninit, 
    207196        .methods=rec_methods 
Note: See TracChangeset for help on using the changeset viewer.