LEE
LEE
三星s9 android9.0 播放rtsp 只解码一帧就崩了
@wseemann https://drive.google.com/file/d/1KMP88L9TWddq9zAry7ClOeo2_TKAZjaC/view?usp=sharing
open url with browser and download
我查了资料,确实有很多种格式,我调用output方法,看打印出来的log是yuv420p,我用了下面这种方法将yuv转rgb,转出来的效果是一样的。 private int[] yuv420pToRgb(byte[] yuv420p,int width,int height) { int frameSize = width * height; int[] rgb = new int[frameSize]; int i = 0, j = 0,yp = 0; int uvp...