I use Zoom Video SDK 2.2.0 on apps running iOS 18.x.
ZoomVideoSDKVideoSource is used to send pure white video frames (converting BGRA(255, 255, 255, 255) → I420 (0xEB, 0x80, 0x80)) and use ZoomVideoSDKVideoSender to transfer the video frames.
On the receiving side, ZoomVideoSDKRawDataPipeDelegate is used to inspect the received the video frames. The color is I420(0xD9, 0x80, 0x80). I would expect subscribing side get a color (Y) close to 0xEB.
Is this an expected behavior? Is there a way to receive a value close to 0xEB?