AudioStream: Fix incorrect padding

This commit is contained in:
Stenzek 2024-09-21 17:21:19 +10:00
parent 96ece5de1c
commit e056bcb5ff
No known key found for this signature in database
2 changed files with 3 additions and 6 deletions

View File

@ -14,6 +14,7 @@
#include "IconsPromptFont.h"
#include <array>
#include <cmath>
Log_SetChannel(PlayStationMouse);

View File

@ -8,7 +8,6 @@
#include <array>
#include <atomic>
#include <complex>
#include <memory>
#include <optional>
#include <string>
@ -21,8 +20,6 @@ namespace soundtouch {
class SoundTouch;
}
struct kiss_fftr_state;
enum class AudioBackend : u8
{
Null,
@ -47,10 +44,9 @@ enum class AudioStretchMode : u8
struct AudioStreamParameters
{
AudioStretchMode stretch_mode = DEFAULT_STRETCH_MODE;
u16 buffer_ms = DEFAULT_BUFFER_MS;
u16 output_latency_ms = DEFAULT_OUTPUT_LATENCY_MS;
bool output_latency_minimal = DEFAULT_OUTPUT_LATENCY_MINIMAL;
bool pad1 = false;
u16 output_latency_ms = DEFAULT_OUTPUT_LATENCY_MS;
u16 buffer_ms = DEFAULT_BUFFER_MS;
u16 stretch_sequence_length_ms = DEFAULT_STRETCH_SEQUENCE_LENGTH;
u16 stretch_seekwindow_ms = DEFAULT_STRETCH_SEEKWINDOW;