Hi,
Up to now I was only using pre-built versions of the Android webrtc stack. Now I was able to compile the latest version from scratch.
From this issue
Up to now, in my application, I was always doing the NV12 -> I420 conversion manually, before feeding the I420 frame to the Google stack:
VideoFrame frame = new VideoFrame(yuvFrameBuffer, 0, SystemClock.elapsedRealtimeNanos());
Could somebody please shed some light, how this has to be done "nowadays", if the yuvFrameBuffer is in NV12 format?
Thanks in advance