NV21转NV12 public static void NV21ToNV12(byte[] nv21, byte[] nv12, int width, int height) {System.arraycopy(nv21, 0, nv12, 0, width * height);for ...