Hi all
I have ran decode_demo on DM6467T and it seemed good on screen, expect the size of pixel after Vdec2_process. My H.264 files is base on 720P. The Buffer after Vdec2_process should return 1382400(YUV420, 1280x720x1.5 ) byte, But now it gives me 1434240 (1328x720x1.5??).
If i save the YUV file with size 1434240 and play it, it is totally an different pic:
ret = Vdec2_process(hVd2, hInBuf, hDstBuf);
fwrite(Buffer_getUserPtr(hDstBuf),Buffer_getNumBytesUsed(hDstBuf),1,fp_yuv);
Does anyone know how can i get the correct pixel?