I am trying to decode the video stream which received by UDP,But the FFmpeg.avcodec_decode_video doesn't work successful,It return the result with -1,Can anybody tell me why? Thanks so much!
int success = -1;
uint initResult= FFmpeg.avcodec_init();
FFmpeg.avcodec_register_all();
IntPtr codec = FFmpeg.avcodec_find_decoder(FFmpeg.CodecID.CODEC_ID_H264);
IntPtr codecCont = FFmpeg.avcodec_alloc_context(); //AVCodecContext
int openResult= FFmpeg.avcodec_open(codecCont, codec);
IntPtr frame = FFmpeg.avcodec_alloc_frame(); //AVFrame
IntPtr buffer = Marshal.AllocHGlobal(dataLen + FFmpeg.FF_INPUT_BUFFER_PADDING_SIZE);
for (int i = 0; i < dataLen; i++)
Marshal.StructureToPtr(dataContent[i], (IntPtr)((int)buffer + i), true);
int decodeResult= FFmpeg.avcodec_decode_video(codecCont, frame, ref success, buffer, dataLen);