This repository has been archived by the owner on May 7, 2023. It is now read-only.
forked from joel16/ElevenMPV
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to v3.80: AT3 and AT3P support
- AT3 and AT3P support - Fully switch to SceLibc - Fixed FLAC seeking issues
- Loading branch information
1 parent
a05b0b8
commit 24bb372
Showing
26 changed files
with
750 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef _ELEVENMPV_AUDIO_AT3_H_ | ||
#define _ELEVENMPV_AUDIO_AT3_H_ | ||
|
||
#include <psp2/types.h> | ||
|
||
int AT3_Init(const char *path); | ||
SceUInt32 AT3_GetSampleRate(void); | ||
SceUInt8 AT3_GetChannels(void); | ||
void AT3_Decode(void *buf, unsigned int length, void *userdata); | ||
SceUInt64 AT3_GetPosition(void); | ||
SceUInt64 AT3_GetLength(void); | ||
SceUInt64 AT3_Seek(SceUInt64 index); | ||
void AT3_Term(void); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef _ELEVENMPV_FIOS2_H_ | ||
#define _ELEVENMPV_FIOS2_H_ | ||
|
||
#include <psp2/fios2.h> | ||
#include <psp2/types.h> | ||
|
||
int fios2Init(void); | ||
int fios2CommonOpDeleteCB(void *pContext, SceFiosOp op, SceFiosOpEvent event, int err); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#ifndef _ELEVENMPV_PSP2_COMPAT_H_ | ||
#define _ELEVENMPV_PSP2_COMPAT_H_ | ||
|
||
void psp2CompatInit(void); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Oops, something went wrong.