2012-11-01 16:19:01 +01: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
|
2012-11-04 23:01:49 +01:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 16:19:01 +01:00
|
|
|
|
|
|
|
// 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/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-03-15 11:22:19 -07:00
|
|
|
#include "Common/Common.h"
|
2012-11-13 18:05:26 +01:00
|
|
|
|
2013-02-03 20:31:46 -08:00
|
|
|
class PointerWrap;
|
|
|
|
|
2012-11-13 18:05:26 +01:00
|
|
|
enum {
|
|
|
|
ERROR_MPEG_BAD_VERSION = 0x80610002,
|
|
|
|
ERROR_MPEG_NO_MEMORY = 0x80610022,
|
|
|
|
ERROR_MPEG_INVALID_ADDR = 0x80610103,
|
|
|
|
ERROR_MPEG_INVALID_VALUE = 0x806101fe,
|
|
|
|
ERROR_MPEG_NO_DATA = 0x80618001,
|
2013-06-07 01:10:25 -07:00
|
|
|
ERROR_MPEG_ALREADY_INIT = 0x80618005,
|
|
|
|
ERROR_MPEG_NOT_YET_INIT = 0x80618009,
|
2014-02-08 23:19:19 +08:00
|
|
|
ERROR_MPEG_AVC_INVALID_VALUE = 0x806201fe,
|
2014-02-01 23:53:48 +08:00
|
|
|
ERROR_MPEG_AVC_DECODE_FATAL = 0x80628002,
|
2014-02-09 00:10:28 +08:00
|
|
|
ERROR_JPEG_INVALID_VALUE = 0x80650051,
|
2012-11-13 18:05:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// MPEG statics.
|
2013-04-05 20:58:35 -07:00
|
|
|
static const u32 PSMF_MAGIC = 0x464D5350;
|
2012-11-13 18:05:26 +01:00
|
|
|
static const int PSMF_STREAM_VERSION_OFFSET = 0x4;
|
|
|
|
static const int PSMF_STREAM_OFFSET_OFFSET = 0x8;
|
|
|
|
static const int PSMF_STREAM_SIZE_OFFSET = 0xC;
|
2013-06-10 04:21:36 +08:00
|
|
|
static const int PSMF_FIRST_TIMESTAMP_OFFSET = 0x54;
|
|
|
|
static const int PSMF_LAST_TIMESTAMP_OFFSET = 0x5A;
|
2012-11-13 18:05:26 +01:00
|
|
|
|
|
|
|
struct SceMpegAu {
|
2013-07-31 17:40:45 +02:00
|
|
|
s64_le pts; // presentation time stamp
|
|
|
|
s64_le dts; // decode time stamp
|
|
|
|
u32_le esBuffer;
|
|
|
|
u32_le esSize;
|
2013-01-06 19:22:52 -08:00
|
|
|
|
2014-03-15 10:45:39 +01:00
|
|
|
void read(u32 addr);
|
|
|
|
void write(u32 addr);
|
2012-11-13 18:05:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// As native in PSP ram
|
|
|
|
struct SceMpegRingBuffer {
|
|
|
|
// PSP info
|
2013-07-27 15:53:30 -07:00
|
|
|
s32_le packets;
|
|
|
|
s32_le packetsRead;
|
|
|
|
s32_le packetsWritten;
|
|
|
|
s32_le packetsFree; // pspsdk: unk2, noxa: iUnk0
|
|
|
|
s32_le packetSize; // 2048
|
2014-01-05 22:20:27 -08:00
|
|
|
u32_le data; // address, ring buffer
|
2013-07-27 15:53:30 -07:00
|
|
|
u32_le callback_addr; // see sceMpegRingbufferPut
|
|
|
|
s32_le callback_args;
|
|
|
|
s32_le dataUpperBound;
|
|
|
|
s32_le semaID; // unused?
|
|
|
|
u32_le mpeg; // pointer to mpeg struct, fixed up in sceMpegCreate
|
2014-03-01 17:19:55 -08:00
|
|
|
// Note: not available in all versions.
|
|
|
|
u32_le gp;
|
2012-11-13 18:05:26 +01:00
|
|
|
};
|
|
|
|
|
2013-06-08 22:53:36 +02:00
|
|
|
void __MpegInit();
|
2012-12-28 23:29:24 -08:00
|
|
|
void __MpegDoState(PointerWrap &p);
|
2012-11-13 18:05:26 +01:00
|
|
|
void __MpegShutdown();
|
|
|
|
|
2014-03-01 17:18:38 -08:00
|
|
|
void __MpegLoadModule(int version);
|
|
|
|
|
2013-12-30 10:17:11 +01:00
|
|
|
void Register_sceMpeg();
|
2014-03-27 00:51:07 +08:00
|
|
|
|
|
|
|
void Register_sceMpegbase();
|
|
|
|
|
2014-04-04 23:01:25 +02:00
|
|
|
void __VideoPmpInit();
|
|
|
|
void __VideoPmpDoState(PointerWrap &p);
|
|
|
|
void __VideoPmpShutdown();
|