Home
last modified time | relevance | path

Searched refs:frame_ (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/guest/hals/camera/
Dvsock_frame_provider.cpp78 if (frame_.size() < total_size) { in copyYUVFrame()
79 ALOGE("%s: %zu is too little for %ux%u frame", __FUNCTION__, frame_.size(), in copyYUVFrame()
87 YCbCrLayout src{.y = static_cast<void*>(frame_.data()), in copyYUVFrame()
88 .cb = static_cast<void*>(frame_.data() + y_size), in copyYUVFrame()
89 .cr = static_cast<void*>(frame_.data() + y_size + cbcr_size), in copyYUVFrame()
161 frame_.swap(next_frame_); in VsockReadLoop()
Dvsock_frame_provider.h61 std::vector<char> frame_; variable