mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-04 04:05:31 +00:00
24 lines
453 B
C++
24 lines
453 B
C++
#ifndef __SDLSPEAKER_H
|
|
#define __SDLSPEAKER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "physicalspeaker.h"
|
|
|
|
#define SPEAKERQUEUESIZE 64
|
|
|
|
class LinuxSpeaker : public PhysicalSpeaker {
|
|
public:
|
|
LinuxSpeaker();
|
|
virtual ~LinuxSpeaker();
|
|
|
|
virtual void begin();
|
|
|
|
virtual void toggle(uint32_t c);
|
|
virtual void maintainSpeaker(uint32_t c, uint64_t microseconds);
|
|
virtual void beginMixing();
|
|
virtual void mixOutput(uint8_t v);
|
|
};
|
|
|
|
#endif
|