RageSoundDriver
This commit is contained in:
@@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
#include "RageSound.h"
|
#include "RageSound.h"
|
||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
|
|
||||||
#include "ALSA9Helpers.h"
|
#include "ALSA9Helpers.h"
|
||||||
|
|
||||||
class RageSoundDriver_ALSA9_Software: public RageSound_Generic_Software
|
class RageSoundDriver_ALSA9_Software: public RageSoundDriver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RageSoundDriver_ALSA9_Software();
|
RageSoundDriver_ALSA9_Software();
|
||||||
|
|||||||
@@ -3,9 +3,9 @@
|
|||||||
|
|
||||||
#include "DSoundHelpers.h"
|
#include "DSoundHelpers.h"
|
||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
|
|
||||||
class RageSoundDriver_DSound_Software: public RageSound_Generic_Software
|
class RageSoundDriver_DSound_Software: public RageSoundDriver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RageSoundDriver_DSound_Software();
|
RageSoundDriver_DSound_Software();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
|
|
||||||
#include "RageLog.h"
|
#include "RageLog.h"
|
||||||
#include "RageSound.h"
|
#include "RageSound.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#ifndef RAGE_SOUND_NULL
|
#ifndef RAGE_SOUND_NULL
|
||||||
#define RAGE_SOUND_NULL
|
#define RAGE_SOUND_NULL
|
||||||
|
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
|
|
||||||
class RageSoundDriver_Null: public RageSound_Generic_Software
|
class RageSoundDriver_Null: public RageSoundDriver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RageSoundDriver_Null();
|
RageSoundDriver_Null();
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
#ifndef RAGE_SOUND_WAVEOUT
|
#ifndef RAGE_SOUND_WAVEOUT
|
||||||
#define RAGE_SOUND_WAVEOUT
|
#define RAGE_SOUND_WAVEOUT
|
||||||
|
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
#include "RageTimer.h"
|
#include "RageTimer.h"
|
||||||
|
|
||||||
class RageSoundDriver_OSS: public RageSound_Generic_Software
|
class RageSoundDriver_OSS: public RageSoundDriver
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
#ifndef RAGE_SOUND_WAVEOUT_H
|
#ifndef RAGE_SOUND_WAVEOUT_H
|
||||||
#define RAGE_SOUND_WAVEOUT_H
|
#define RAGE_SOUND_WAVEOUT_H
|
||||||
|
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
struct WinWdmStream;
|
struct WinWdmStream;
|
||||||
struct WinWdmFilter;
|
struct WinWdmFilter;
|
||||||
|
|
||||||
class RageSoundDriver_WDMKS: public RageSound_Generic_Software
|
class RageSoundDriver_WDMKS: public RageSoundDriver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RageSoundDriver_WDMKS();
|
RageSoundDriver_WDMKS();
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
#ifndef RAGE_SOUND_WAVEOUT_H
|
#ifndef RAGE_SOUND_WAVEOUT_H
|
||||||
#define RAGE_SOUND_WAVEOUT_H
|
#define RAGE_SOUND_WAVEOUT_H
|
||||||
|
|
||||||
#include "RageSoundDriver_Generic_Software.h"
|
#include "RageSoundDriver.h"
|
||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <mmsystem.h>
|
#include <mmsystem.h>
|
||||||
|
|
||||||
class RageSoundDriver_WaveOut: public RageSound_Generic_Software
|
class RageSoundDriver_WaveOut: public RageSoundDriver
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
RageSoundDriver_WaveOut();
|
RageSoundDriver_WaveOut();
|
||||||
|
|||||||
Reference in New Issue
Block a user