From 440b6197d7d5c49ca81c57e9afcfef31a80d7076 Mon Sep 17 00:00:00 2001 From: shenweip <1037567878@qq.com> Date: Wed, 18 Sep 2013 16:19:05 +0800 Subject: [PATCH] Change DEBUG_LOG_REPORT to DEBUG_LOG and change internal funcs name as @unknownbrackets 's advice --- Core/HLE/sceJpeg.cpp | 2 +- Core/HLE/sceMpeg.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/HLE/sceJpeg.cpp b/Core/HLE/sceJpeg.cpp index 938c484ad6..d073a9e73a 100644 --- a/Core/HLE/sceJpeg.cpp +++ b/Core/HLE/sceJpeg.cpp @@ -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; } diff --git a/Core/HLE/sceMpeg.cpp b/Core/HLE/sceMpeg.cpp index 7886d02655..c39fdb97e9 100644 --- a/Core/HLE/sceMpeg.cpp +++ b/Core/HLE/sceMpeg.cpp @@ -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; }