Lines Matching refs:pixbuf
40 CVPixelBufferRef pixbuf = (CVPixelBufferRef)frame->data[3];
41 OSType pixel_format = CVPixelBufferGetPixelFormatType(pixbuf);
74 err = CVPixelBufferLockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
80 if (CVPixelBufferIsPlanar(pixbuf)) {
82 planes = CVPixelBufferGetPlaneCount(pixbuf);
84 data[i] = CVPixelBufferGetBaseAddressOfPlane(pixbuf, i);
85 linesize[i] = CVPixelBufferGetBytesPerRowOfPlane(pixbuf, i);
88 data[0] = CVPixelBufferGetBaseAddress(pixbuf);
89 linesize[0] = CVPixelBufferGetBytesPerRow(pixbuf);
97 CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);