mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
* Implement audio output * Semi-proper audio output * Add audio enable and vsync settings * Add audio enable and vsync settings * Optimize audio output a bit * Make max ring buffer timeout smaller * Make max ring buffer timeout smaller * Revert to spinlocking for audio sync * Sleep emulator thread if too many samples queued * Fix Teakra submodule breaking * Don't start audio device too soon * Fix IWYU errors * Fix compilation errors on GCC/Clang * Ignore std::hardware_destructive_interference_size on Android NDK * Fix more IWYU errors
31 lines
No EOL
718 B
C++
31 lines
No EOL
718 B
C++
#pragma once
|
|
#include <atomic>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "miniaudio.h"
|
|
#include "ring_buffer.hpp"
|
|
|
|
class MiniAudioDevice {
|
|
using Samples = Common::RingBuffer<ma_int16, 1024>;
|
|
static constexpr ma_uint32 sampleRate = 32768; // 3DS sample rate
|
|
static constexpr ma_uint32 channelCount = 2; // Audio output is stereo
|
|
|
|
ma_context context;
|
|
ma_device_config deviceConfig;
|
|
ma_device device;
|
|
ma_resampler resampler;
|
|
Samples* samples = nullptr;
|
|
|
|
bool initialized = false;
|
|
bool running = false;
|
|
|
|
std::vector<std::string> audioDevices;
|
|
public:
|
|
MiniAudioDevice();
|
|
// If safe is on, we create a null audio device
|
|
void init(Samples& samples, bool safe = false);
|
|
|
|
void start();
|
|
void stop();
|
|
}; |