Changeset 1067:f2520466a485 in mediastreamer2
- Timestamp:
- Oct 8, 2010 3:47:08 PM (3 years ago)
- Branch:
- default
- Children:
- 1068:890bc2451116, 1074:18bd4cfab392
- File:
-
- 1 edited
-
src/msfilerec.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/msfilerec.c
r1065 r1067 105 105 } 106 106 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 116 107 static void write_wav_header(int fd, int rate,int size){ 117 108 wave_header_t header; … … 184 175 0, 185 176 rec_init, 186 rec_start,177 NULL, 187 178 rec_process, 188 rec_stop,179 NULL, 189 180 rec_uninit, 190 181 rec_methods … … 201 192 .noutputs=0, 202 193 .init=rec_init, 203 .preprocess=rec_preprocess,204 194 .process=rec_process, 205 .postprocess=rec_postprocess,206 195 .uninit=rec_uninit, 207 196 .methods=rec_methods
Note: See TracChangeset
for help on using the changeset viewer.
