예제 #1
0
 internal MMALBufferImpl Wait()
 {
     return(new MMALBufferImpl(MMALQueue.mmal_queue_wait(this.Ptr)));
 }
예제 #2
0
 /// <summary>
 /// Waits (blocking) for a buffer header to be available in the queue and allocates it.
 /// </summary>
 /// <returns>The buffer header.</returns>
 public IBuffer Wait()
 {
     return(new MMALBufferImpl(MMALQueue.mmal_queue_wait(this.Ptr)));
 }