Lines Matching defs:cv_img
2187 CVPixelBufferRef cv_img,
2201 status = CVPixelBufferLockBaseAddress(cv_img, 0);
2211 if (CVPixelBufferIsPlanar(cv_img)) {
2212 plane_count = CVPixelBufferGetPlaneCount(cv_img);
2215 CVPixelBufferUnlockBaseAddress(cv_img, 0);
2224 dst_addr = (uint8_t*)CVPixelBufferGetBaseAddressOfPlane(cv_img, i);
2226 dst_stride = CVPixelBufferGetBytesPerRowOfPlane(cv_img, i);
2242 CVPixelBufferUnlockBaseAddress(cv_img, 0);
2251 dst_addr = (uint8_t*)CVPixelBufferGetBaseAddress(cv_img);
2253 dst_stride = CVPixelBufferGetBytesPerRow(cv_img);
2268 status = CVPixelBufferUnlockBaseAddress(cv_img, 0);
2279 CVPixelBufferRef *cv_img)
2294 *cv_img = (CVPixelBufferRef)frame->data[3];
2295 av_assert0(*cv_img);
2297 CFRetain(*cv_img);
2356 cv_img);
2364 status = copy_avframe_to_pixel_buffer(avctx, frame, *cv_img, strides, heights);
2366 CFRelease(*cv_img);
2367 *cv_img = NULL;
2396 CVPixelBufferRef cv_img = NULL;
2399 int status = create_cv_pixel_buffer(avctx, frame, &cv_img);
2405 CFRelease(cv_img);
2429 cv_img,
2438 CFRelease(cv_img);