Remove more unnecessary accessors

This commit is contained in:
Henrik Rydgård 2024-04-10 13:26:50 +02:00
parent 423e3d3338
commit 3de85c8d14
4 changed files with 6 additions and 19 deletions

View File

@ -511,7 +511,7 @@ static int sceMp3GetLoopNum(u32 mp3) {
return hleLogError(ME, ERROR_MP3_UNRESERVED_HANDLE, "incorrect handle type");
}
return hleLogSuccessI(ME, ctx->AuGetLoopNum());
return hleLogSuccessI(ME, ctx->LoopNum);
}
static int sceMp3GetMaxOutputSample(u32 mp3) {
@ -555,7 +555,8 @@ static int sceMp3SetLoopNum(u32 mp3, int loop) {
if (loop < 0)
loop = -1;
return hleLogSuccessI(ME, ctx->AuSetLoopNum(loop));
ctx->LoopNum = loop;
return hleLogSuccessI(ME, 0);
}
static int sceMp3GetMp3ChannelNum(u32 mp3) {

View File

@ -301,7 +301,7 @@ static u32 sceAacGetLoopNum(u32 id)
ERROR_LOG(ME, "%s: bad aac id %08x", __FUNCTION__, id);
return -1;
}
return ctx->AuGetLoopNum();
return ctx->LoopNum;
}
static u32 sceAacSetLoopNum(u32 id, int loop)
@ -313,7 +313,8 @@ static u32 sceAacSetLoopNum(u32 id, int loop)
return -1;
}
return ctx->AuSetLoopNum(loop);
ctx->LoopNum = loop;
return 0;
}
static int sceAacCheckStreamDataNeeded(u32 id)

View File

@ -458,17 +458,6 @@ u32 AuCtx::AuDecode(u32 pcmAddr) {
return outpcmbufsize;
}
u32 AuCtx::AuGetLoopNum()
{
return LoopNum;
}
u32 AuCtx::AuSetLoopNum(int loop)
{
LoopNum = loop;
return 0;
}
// return 1 to read more data stream, 0 don't read
int AuCtx::AuCheckStreamDataNeeded() {
// If we would ask for bytes, then some are needed.

View File

@ -73,10 +73,6 @@ public:
int AuStreamWorkareaSize();
u32 AuResetPlayPosition();
u32 AuResetPlayPositionByFrame(int position);
u32 AuSetLoopNum(int loop);
u32 AuGetLoopNum();
u32 AuGetInfoToAddStreamData(u32 bufPtr, u32 sizePtr, u32 srcPosPtr);
void SetReadPos(int pos) { readPos = pos; }