mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
cellAtrac draft
sys_spu_thread_group_resume Some bugs fixed
This commit is contained in:
parent
169fcd098b
commit
d0ea397492
14 changed files with 113 additions and 45 deletions
|
@ -64,7 +64,7 @@ next:
|
|||
adec.reader.size = adec.task.au.size;
|
||||
//ConLog.Write("Audio AU: size = 0x%x, pts = 0x%llx", adec.task.au.size, adec.task.au.pts);
|
||||
|
||||
if (adec.last_pts > adec.task.au.pts) adec.last_pts = adec.task.au.pts;
|
||||
//if (adec.last_pts > adec.task.au.pts) adec.last_pts = adec.task.au.pts;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
@ -266,7 +266,8 @@ u32 adecOpen(AudioDecoder* data)
|
|||
adec.reader.size = task.au.size;
|
||||
//ConLog.Write("Audio AU: size = 0x%x, pts = 0x%llx", task.au.size, task.au.pts);
|
||||
|
||||
if (adec.last_pts > task.au.pts || adec.just_started) adec.last_pts = task.au.pts;
|
||||
//if (adec.last_pts > task.au.pts || adec.just_started) adec.last_pts = task.au.pts;
|
||||
if (adec.just_started) adec.last_pts = task.au.pts;
|
||||
|
||||
struct AVPacketHolder : AVPacket
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue