如何调试H264裸流?
将裸流保存成文件,然后用010 editor看结构,用vlc播放
如果有00 00 00 01多个出现,说明存在nual结构,h264的结构没有问题。
image.png
public static void writeH264(byte[] h264) {
try {
FileOutputStream fos=new FileOutputStream("/sdcard/camera.h264",true);
fos.write(h264);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
网友评论