Skip to content

Commit

Permalink
video/vita: request a new IDR on any hwdec error
Browse files Browse the repository at this point in the history
  • Loading branch information
xyzz committed Aug 16, 2016
1 parent 62b287c commit e4cf2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/vita.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ static int vita_submit_decode_unit(PDECODE_UNIT decodeUnit) {
ret = sceAvcdecDecode(&decoder, &au, &array_picture);
if (ret < 0)
printf("sceAvcdecDecode (len=0x%x): 0x%x numOfOutput %d\n", decodeUnit->fullLength, ret, array_picture.numOfOutput);
if (ret == 0x80620003) {
if (ret < 0) {
return DR_NEED_IDR;
}

Expand Down

0 comments on commit e4cf2cd

Please sign in to comment.