Internal change

PiperOrigin-RevId: 545045282
This commit is contained in:
MediaPipe Team
2023-07-03 10:04:19 -07:00
committed by Copybara-Service
parent 7ba21e9a9a
commit dbe8e40124
@@ -38,7 +38,7 @@ std::string FourCCToString(libyuv::FourCC fourcc) {
buf[0] = (fourcc >> 24) & 0xff;
buf[1] = (fourcc >> 16) & 0xff;
buf[2] = (fourcc >> 8) & 0xff;
buf[3] = (fourcc)&0xff;
buf[3] = (fourcc) & 0xff;
buf[4] = 0;
return std::string(buf);
}