Internal change

PiperOrigin-RevId: 524259260
This commit is contained in:
MediaPipe Team 2023-04-14 04:45:41 -07:00 committed by Copybara-Service
parent 1fd0f9328e
commit 6da95183bc

View File

@ -31,7 +31,8 @@
namespace mediapipe {
namespace {
void FillImageFrameRGBA(ImageFrame& image, uint8 r, uint8 g, uint8 b, uint8 a) {
void FillImageFrameRGBA(ImageFrame& image, uint8_t r, uint8_t g, uint8_t b,
uint8_t a) {
auto* data = image.MutablePixelData();
for (int y = 0; y < image.Height(); ++y) {
auto* row = data + image.WidthStep() * y;