摘要:
private static void decodeYUV420SP(int[] rgbBuf, byte[] yuv420sp,int width, int height) {final int frameSize = width * height;if (rgbBuf == null)throw new NullPointerException("buffer 'rgbBuf' is null");if (rgbBuf.length < frameSize * 3)throw new IllegalArgumentException("b 阅读全文