LukasBommes / mv-extractor

Extract frames and motion vectors from H.264 and MPEG-4 encoded video.
MIT License
279 stars 56 forks source link

RTSP stream hangs on camera going offline #25

Open magistrser opened 1 year ago

magistrser commented 1 year ago

Also when camera returns stream still hangs. I debugged it a little and find out that for

avcodec_decode_video2(this->video_dec_ctx, this->frame, &got_frame, &(this->packet));

got_frame still be 1 even if avcodec_decode_video2 returns 0. It leads to infinity loop in grab function. I hope this fix is good enough, or may be you know the right way to fix it