- Timestamp:
- 07/29/10 02:29:41 (6 weeks ago)
- File:
-
- 1 edited
-
portaudio/trunk/src/hostapi/jack/pa_jack.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
portaudio/trunk/src/hostapi/jack/pa_jack.c
r1346 r1530 1001 1001 struct timespec ts; 1002 1002 1003 ts.tv_sec = (time_t) floor( pt + 1 );1003 ts.tv_sec = (time_t) floor( pt + 10 * 60 /* 10 minutes */ ); 1004 1004 ts.tv_nsec = (long) ((pt - floor( pt )) * 1000000000); 1005 1005 /* XXX: Best enclose in loop, in case of spurious wakeups? */ … … 1178 1178 1179 1179 /* setup blocking API data structures (FIXME: can fail) */ 1180 BlockingBegin( stream, minimum_buffer_frames );1180 BlockingBegin( stream, minimum_buffer_frames ); 1181 1181 1182 1182 /* install our own callback for the blocking API */ … … 1277 1277 inputChannelCount, 1278 1278 inputSampleFormat, 1279 paFloat32 ,/* hostInputSampleFormat */1279 paFloat32 | paNonInterleaved, /* hostInputSampleFormat */ 1280 1280 outputChannelCount, 1281 1281 outputSampleFormat, 1282 paFloat32 ,/* hostOutputSampleFormat */1282 paFloat32 | paNonInterleaved, /* hostOutputSampleFormat */ 1283 1283 jackSr, 1284 1284 streamFlags,
Note: See TracChangeset
for help on using the changeset viewer.
