Internal change

PiperOrigin-RevId: 545045282
This commit is contained in:
MediaPipe Team 2023-07-02 10:12:32 -07:00 committed by Copybara-Service
parent 7ba21e9a9a
commit dbe8e40124

View File

@ -38,7 +38,7 @@ std::string FourCCToString(libyuv::FourCC fourcc) {
buf[0] = (fourcc >> 24) & 0xff; buf[0] = (fourcc >> 24) & 0xff;
buf[1] = (fourcc >> 16) & 0xff; buf[1] = (fourcc >> 16) & 0xff;
buf[2] = (fourcc >> 8) & 0xff; buf[2] = (fourcc >> 8) & 0xff;
buf[3] = (fourcc)&0xff; buf[3] = (fourcc) & 0xff;
buf[4] = 0; buf[4] = 0;
return std::string(buf); return std::string(buf);
} }