cellVdec: Do not decode next frame during end_sequence

This commit is contained in:
GinkREAL 2018-04-07 06:59:46 +08:00 committed by Ivan
parent c77b310422
commit 8a51af0b56
1 changed files with 5 additions and 0 deletions

View File

@ -226,6 +226,11 @@ struct vdec_thread : ppu_thread
while (max_frames)
{
if (vcmd == vdec_cmd::end_seq)
{
break;
}
vdec_frame frame;
frame.avf.reset(av_frame_alloc());