2012-11-01 15:19:01 +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
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00: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
|
2013-10-01 20:24:55 +00:00
|
|
|
|
2013-10-07 18:26:10 +00:00
|
|
|
#include "sceAudio.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2015-01-29 11:55:49 +00:00
|
|
|
struct AudioDebugStats {
|
|
|
|
int buffered;
|
|
|
|
int watermark;
|
|
|
|
int bufsize;
|
|
|
|
int underrunCount;
|
|
|
|
int overrunCount;
|
|
|
|
int instantSampleRate;
|
|
|
|
int lastPushSize;
|
|
|
|
};
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
// Easy interface for sceAudio to write to, to keep the complexity in check.
|
|
|
|
|
|
|
|
void __AudioInit();
|
2012-12-28 08:05:54 +00:00
|
|
|
void __AudioDoState(PointerWrap &p);
|
2012-11-01 15:19:01 +00:00
|
|
|
void __AudioUpdate();
|
|
|
|
void __AudioShutdown();
|
2012-11-17 13:20:04 +00:00
|
|
|
void __AudioSetOutputFrequency(int freq);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// May return SCE_ERROR_AUDIO_CHANNEL_BUSY if buffer too large
|
|
|
|
u32 __AudioEnqueue(AudioChannel &chan, int chanNum, bool blocking);
|
2013-06-05 19:20:07 +00:00
|
|
|
void __AudioWakeThreads(AudioChannel &chan, int result, int step);
|
|
|
|
void __AudioWakeThreads(AudioChannel &chan, int result);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2015-01-11 14:13:43 +00:00
|
|
|
int __AudioMix(short *outstereo, int numSamples, int sampleRate);
|
2015-01-29 13:58:03 +00:00
|
|
|
const AudioDebugStats *__AudioGetDebugStats();
|
|
|
|
void __PushExternalAudio(const s32 *audio, int numSamples); // Should not be used in-game, only at the menu!
|