Change DEBUG_LOG_REPORT to DEBUG_LOG and change internal funcs name as @unknownbrackets 's advice

This commit is contained in:
shenweip 2013-09-18 16:19:05 +08:00
parent a794f1536e
commit 440b6197d7
2 changed files with 3 additions and 3 deletions

View file

@ -130,7 +130,7 @@ int sceJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth, i
imageBuffer += width;
imageBuffer += skipEndOfLine;
}
DEBUG_LOG_REPORT(ME, "UNIMPL sceJpegCsc(%i, %i, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth, colourInfo);
DEBUG_LOG(ME, "UNIMPL sceJpegCsc(%i, %i, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth, colourInfo);
return 0;
}

View file

@ -1370,7 +1370,7 @@ u32 convertARGBToYCbCr(u32 abgr) {
return (y << 16) | (cb << 8) | cr;
}
int hleMpegAvcConvertToYuv420(const void *data, u32 bufferOutputAddr, int width, int height) {
int __MpegAvcConvertToYuv420(const void *data, u32 bufferOutputAddr, int width, int height) {
u32 *imageBuffer = (u32*)data;
int sizeY = width * height;
int sizeCb = sizeY >> 2;
@ -1421,7 +1421,7 @@ int sceMpegAvcConvertToYuv420(u32 mpeg, u32 bufferOutputAddr, u32 unknown1, int
int height = ctx->mediaengine->m_desHeight;
if (data) {
hleMpegAvcConvertToYuv420(data, bufferOutputAddr, width, height);
__MpegAvcConvertToYuv420(data, bufferOutputAddr, width, height);
}
return 0;
}