From e7601b4399ad08a14fa1f697fdb75600af697204 Mon Sep 17 00:00:00 2001 From: shenweip Date: Thu, 17 Oct 2013 11:57:55 +0800 Subject: [PATCH] Change some log level. --- Core/HLE/sceJpeg.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Core/HLE/sceJpeg.cpp b/Core/HLE/sceJpeg.cpp index 68d5ce7858..22db01b776 100644 --- a/Core/HLE/sceJpeg.cpp +++ b/Core/HLE/sceJpeg.cpp @@ -123,7 +123,7 @@ int sceJpegDecodeMJpegYCbCrSuccessively(u32 jpegAddr, int jpegSize, u32 yCbCrAdd int sceJpegDeleteMJpeg() { - ERROR_LOG_REPORT(ME, "UNIMPL sceJpegDeleteMJpeg()"); + WARN_LOG(ME, "sceJpegDeleteMJpeg()"); return 0; } @@ -136,13 +136,13 @@ int sceJpegDecodeMJpegSuccessively(u32 jpegAddr, int jpegSize, u32 imageAddr, in int sceJpegCsc(u32 imageAddr, u32 yCbCrAddr, int widthHeight, int bufferWidth, int colourInfo) { __JpegCsc(imageAddr, yCbCrAddr, widthHeight, bufferWidth); - DEBUG_LOG(ME, "UNIMPL sceJpegCsc(%i, %i, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth, colourInfo); + DEBUG_LOG(ME, "sceJpegCsc(%i, %i, %i, %i, %i)", imageAddr, yCbCrAddr, widthHeight, bufferWidth, colourInfo); return 0; } int sceJpegFinishMJpeg() { - ERROR_LOG_REPORT(ME, "UNIMPL sceJpegFinishMJpeg()"); + WARN_LOG(ME, "sceJpegFinishMJpeg()"); return 0; } @@ -265,7 +265,7 @@ int __JpegConvertRGBToYCbCr (const void *data, u32 bufferOutputAddr, int width, int sceJpegDecodeMJpegYCbCr(u32 jpegAddr, int jpegSize, u32 yCbCrAddr, int yCbCrSize, int dhtMode) { - ERROR_LOG_REPORT(ME, "sceJpegDecodeMJpegYCbCr(%i, %i, %i, %i, %i)", jpegAddr, jpegSize, yCbCrAddr, yCbCrSize, dhtMode); + WARN_LOG_REPORT(ME, "sceJpegDecodeMJpegYCbCr(%i, %i, %i, %i, %i)", jpegAddr, jpegSize, yCbCrAddr, yCbCrSize, dhtMode); if (!Memory::IsValidAddress(jpegAddr)) { @@ -299,7 +299,7 @@ int sceJpeg_9B36444C() int sceJpegCreateMJpeg(int width, int height) { - ERROR_LOG_REPORT(ME, "sceJpegCreateMJpeg(%i, %i)", width, height); + DEBUG_LOG(ME, "sceJpegCreateMJpeg(%i, %i)", width, height); mjpegWidth = width; mjpegHeight = height; @@ -309,7 +309,7 @@ int sceJpegCreateMJpeg(int width, int height) int sceJpegInitMJpeg() { - ERROR_LOG_REPORT(ME, "UNIMPL sceJpegInitMJpeg()"); + WARN_LOG(ME, "sceJpegInitMJpeg()"); return 0; }