ppsspp/Core/HLE/sceJpeg.cpp

216 lines
5.5 KiB
C++
Raw Normal View History

2013-05-15 11:49:34 +00:00
// Copyright (c) 2012- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "Core/HLE/HLE.h"
#include "Core/Reporting.h"
2013-07-04 09:55:06 +00:00
#include "Common.h"
2013-07-04 19:56:20 +00:00
#include "native/ext/cityhash/city.h"
2013-05-15 11:49:34 +00:00
2013-07-04 09:55:06 +00:00
// http://keyj.emphy.de/nanojpeg/
#include "native\ext\njpeg\nanojpeg.h"
int jpegWidth, jpegHeight;
//Uncomment if you want to dump JPEGs loaded through sceJpeg to a file
//#define JPEG_DEBUG
2013-05-15 11:49:34 +00:00
int sceJpegDecompressAllImage()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegDecompressAllImage");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegMJpegCsc()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegMJpegCsc");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegDecodeMJpeg()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegDecodeMJpeg");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegDecodeMJpegYCbCrSuccessively()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegDecodeMJpegYCbCrSuccessively");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegDeleteMJpeg()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegDeleteMJpeg");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegDecodeMJpegSuccessively()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegDecodeMJpegSuccessively");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegCsc()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegCsc");
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegFinishMJpeg()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegFinishMJpeg");
2013-07-04 09:55:06 +00:00
njDone();
2013-05-15 11:49:34 +00:00
return 0;
}
2013-07-04 09:55:06 +00:00
int getYCbCrBufferSize()
2013-05-15 11:49:34 +00:00
{
2013-07-04 09:55:06 +00:00
int w = njGetWidth();
int h = njGetHeight();
// Return necessary buffer size for conversion: 12 bits per pixel
return ((w * h) >> 1) * 3;
2013-05-15 11:49:34 +00:00
}
2013-07-04 09:55:06 +00:00
int sceJpegGetOutputInfo(u32 jpegAddr, int jpegSize, u32 colourInfoAddr, int dhtMode)
2013-05-15 11:49:34 +00:00
{
2013-07-04 09:55:06 +00:00
ERROR_LOG_REPORT(HLE, "sceJpegGetOutputInfo(%i, %i, %i, %i)", jpegAddr, jpegSize, colourInfoAddr, dhtMode);
// Buffer to store info about the color space in use.
// - Bits 24 to 32 (Always empty): 0x00
// - Bits 16 to 24 (Color mode): 0x00 (Unknown), 0x01 (Greyscale) or 0x02 (YCbCr)
// - Bits 8 to 16 (Vertical chroma subsampling value): 0x00, 0x01 or 0x02
// - Bits 0 to 8 (Horizontal chroma subsampling value): 0x00, 0x01 or 0x02
if (Memory::IsValidAddress(colourInfoAddr))
Memory::Write_U32(0x00020202, colourInfoAddr);
if (!Memory::IsValidAddress(jpegAddr))
{
ERROR_LOG(HLE, "sceJpegGetOutputInfo: Bad JPEG address 0x%08x", jpegAddr);
return 0xC000;
}
else // Memory address is good
{
// But data may not be...so check it
u8 *buf = Memory::GetPointer(jpegAddr);
int result = njDecode(buf, jpegSize);
if (result != 0) // (0 = success)
{
ERROR_LOG(HLE, "sceJpegGetOutputInfo: Bad JPEG data");
return 0xC000;
}
}
#ifdef JPEG_DEBUG
char jpeg_fname[256];
u8 *jpegBuf = Memory::GetPointer(jpegAddr);
uint32 jpeg_cityhash = CityHash32((const char *)jpegBuf, jpegSize);
sprintf(jpeg_fname, "Jpeg\\%X.jpg", jpeg_cityhash);
FILE *wfp = fopen(jpeg_fname, "wb");
fwrite(jpegBuf, 1, jpegSize, wfp);
fclose(wfp);
#endif //JPEG_DEBUG
return getYCbCrBufferSize();
}
int getWidthHeight(int width, int height)
{
return (width << 16) | height;
}
int sceJpegDecodeMJpegYCbCr(u32 jpegAddr, int jpegSize, u32 yCbCrAddr, int yCbCrSize, int dhtMode)
{
ERROR_LOG_REPORT(HLE, "sceJpegDecodeMJpegYCbCr(%i, %i, %i, %i, %i)", jpegAddr, jpegSize, yCbCrAddr, yCbCrSize, dhtMode);
if (!Memory::IsValidAddress(jpegAddr))
{
return getWidthHeight(0, 0);
}
u8 *jpegBuf = Memory::GetPointer(jpegAddr);
int result = njDecode(jpegBuf, jpegSize);
if (result != 0) // (0 = success)
{
return getWidthHeight(0, 0);
}
int width = njGetWidth();
int height = njGetHeight();
// TODO: There's more...
return getWidthHeight(width, height);
2013-05-15 11:49:34 +00:00
}
int sceJpeg_9B36444C()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpeg_9B36444C");
2013-05-15 11:49:34 +00:00
return 0;
}
2013-07-04 09:55:06 +00:00
int sceJpegCreateMJpeg(int width, int height)
2013-05-15 11:49:34 +00:00
{
2013-07-04 09:55:06 +00:00
ERROR_LOG_REPORT(HLE, "sceJpegCreateMJpeg(%i, %i)", width, height);
jpegWidth = width;
jpegHeight = height;
2013-05-15 11:49:34 +00:00
return 0;
}
int sceJpegInitMJpeg()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpegInitMJpeg");
2013-07-04 09:55:06 +00:00
njInit();
return 0;
}
int sceJpeg_A06A75C4()
{
ERROR_LOG_REPORT(HLE, "UNIMPL sceJpeg_A06A75C4");
2013-05-15 11:49:34 +00:00
return 0;
}
const HLEFunction sceJpeg[] =
{
{0x0425B986, WrapI_V<sceJpegDecompressAllImage>, "sceJpegDecompressAllImage"},
{0x04B5AE02, WrapI_V<sceJpegMJpegCsc>, "sceJpegMJpegCsc"},
{0x04B93CEF, WrapI_V<sceJpegDecodeMJpeg>, "sceJpegDecodeMJpeg"},
{0x227662D7, WrapI_V<sceJpegDecodeMJpegYCbCrSuccessively>, "sceJpegDecodeMJpegYCbCrSuccessively"},
{0x48B602B7, WrapI_V<sceJpegDeleteMJpeg>, "sceJpegDeleteMJpeg"},
{0x64B6F978, WrapI_V<sceJpegDecodeMJpegSuccessively>, "sceJpegDecodeMJpegSuccessively"},
{0x67F0ED84, WrapI_V<sceJpegCsc>, "sceJpegCsc"},
{0x7D2F3D7F, WrapI_V<sceJpegFinishMJpeg>, "sceJpegFinishMJpeg"},
2013-07-04 09:55:06 +00:00
{0x8F2BB012, WrapI_UIUI<sceJpegGetOutputInfo>, "sceJpegGetOutputInfo"},
{0x91EED83C, WrapI_UIUII<sceJpegDecodeMJpegYCbCr>, "sceJpegDecodeMJpegYCbCr"},
2013-05-15 11:49:34 +00:00
{0x9B36444C, WrapI_V<sceJpeg_9B36444C>, "sceJpeg_9B36444C"},
2013-07-04 09:55:06 +00:00
{0x9D47469C, WrapI_II<sceJpegCreateMJpeg>, "sceJpegCreateMJpeg"},
2013-05-15 11:49:34 +00:00
{0xAC9E70E6, WrapI_V<sceJpegInitMJpeg>, "sceJpegInitMJpeg"},
2013-07-04 09:55:06 +00:00
{0xa06a75c4, WrapI_V<sceJpeg_A06A75C4>, "sceJpeg_A06A75C4"},
2013-05-15 11:49:34 +00:00
};
void Register_sceJpeg()
{
RegisterModule("sceJpeg", ARRAY_SIZE(sceJpeg), sceJpeg);
}