Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pac-Man World 3
01-29-2014, 05:23 AM
Post: #7
RE: Pacman World 3
Okay, so the question is why does it return no more data when it still has packets.... hmm.

It seems like it's never even trying to decode the final frame of the video. It never gets the video end, and this is the only thing that triggers the packets to be flushed.

What if you add this to sceMpegGetAtracAu():

Code:
    if (ctx->mediaengine->IsNoAudioData() && mpegRingbuffer.packetsFree + 4 >= mpegRingbuffer.packets) {
        mpegRingbuffer.packetsFree = mpegRingbuffer.packets;
        Memory::WriteStruct(ctx->mpegRingbufferAddr, &mpegRingbuffer);
    }

It's a hack but if it works, it'll confirm that handling this better somehow will fix it.

-[Unknown]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Pac-Man World 3 - sfageas - 03-03-2013, 04:49 PM
RE: Pacman World 3 - sfageas - 05-24-2013, 09:51 AM
RE: Pacman World 3 - sfageas - 07-04-2013, 12:18 PM
RE: Pacman World 3 - sum2012 - 01-28-2014, 09:27 AM
RE: Pacman World 3 - [Unknown] - 01-28-2014, 02:54 PM
RE: Pacman World 3 - sum2012 - 01-28-2014, 10:18 PM
RE: Pacman World 3 - [Unknown] - 01-29-2014 05:23 AM
RE: Pacman World 3 - sum2012 - 01-29-2014, 05:31 AM
RE: Pacman World 3 - sum2012 - 01-29-2014, 06:51 AM
RE: Pacman World 3 - Stevec - 02-14-2014, 08:17 PM
RE: Pacman World 3 - Nik1895 - 03-09-2014, 09:43 AM
RE: Pac-Man World 3 - vnctdj - 03-09-2014, 09:55 AM
RE: Pac-Man World 3 - jacky400 - 04-28-2014, 08:11 AM
RE: Pac-Man World 3 - Stevec - 04-29-2014, 05:57 AM
RE: Pac-Man World 3 - jacky400 - 04-29-2014, 02:59 PM
RE: Pac-Man World 3 - Stevec - 04-29-2014, 07:07 PM
RE: Pac-Man World 3 - [Unknown] - 05-01-2014, 01:38 AM
RE: Pac-Man World 3 - sum2012 - 05-01-2014, 02:50 AM
RE: Pac-Man World 3 - [Unknown] - 05-01-2014, 05:32 AM
RE: Pac-Man World 3 - sum2012 - 05-01-2014, 05:54 AM
RE: Pac-Man World 3 - [Unknown] - 05-01-2014, 06:18 AM
RE: Pac-Man World 3 - sum2012 - 05-01-2014, 06:27 AM
RE: Pac-Man World 3 - sum2012 - 05-06-2014, 01:36 PM
RE: Pac-Man World 3 - vnctdj - 05-06-2014, 02:20 PM

Forum Jump: