diff --git a/audio/audio_driver.h b/audio/audio_driver.h index a68db61620..5e2f56668b 100644 --- a/audio/audio_driver.h +++ b/audio/audio_driver.h @@ -27,6 +27,13 @@ extern "C" { #endif +#define AUDIO_CHUNK_SIZE_BLOCKING 512 + +/* So we don't get complete line-noise when fast-forwarding audio. */ +#define AUDIO_CHUNK_SIZE_NONBLOCKING 2048 + +#define AUDIO_MAX_RATIO 16 + enum rarch_audio_ctl_state { RARCH_AUDIO_CTL_NONE = 0, diff --git a/driver.h b/driver.h index 0f58b65e31..36503b248c 100644 --- a/driver.h +++ b/driver.h @@ -32,13 +32,6 @@ extern "C" { #endif -#define AUDIO_CHUNK_SIZE_BLOCKING 512 - -/* So we don't get complete line-noise when fast-forwarding audio. */ -#define AUDIO_CHUNK_SIZE_NONBLOCKING 2048 - -#define AUDIO_MAX_RATIO 16 - /* Specialized _MOUSE that targets the full screen regardless of viewport. */ #define RARCH_DEVICE_MOUSE_SCREEN (RETRO_DEVICE_MOUSE | 0x10000)