This commit is contained in:
Boris-Chengbiao Zhou 2016-08-19 21:48:53 +02:00
parent fa6a7e92d2
commit 70858ad2e5
1 changed files with 2 additions and 0 deletions

View File

@ -378,6 +378,8 @@ impl Stream for SamplesStream {
self.max_frames_in_buffer - padding
};
if frames_available == 0 { return Poll::NotReady; }
// Obtaining a pointer to the buffer.
let (buffer_data, buffer_len) = {
let mut buffer: *mut winapi::BYTE = mem::uninitialized();