mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-07 12:07:09 +03:00
22 lines
380 B
C++
22 lines
380 B
C++
#ifndef PCM5102AUDIOSINK_H
|
|
#define PCM5102AUDIOSINK_H
|
|
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include "BufferedAudioSink.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/unistd.h>
|
|
#include <sys/stat.h>
|
|
#include "esp_err.h"
|
|
#include "esp_log.h"
|
|
|
|
class PCM5102AudioSink : public BufferedAudioSink
|
|
{
|
|
public:
|
|
PCM5102AudioSink();
|
|
~PCM5102AudioSink();
|
|
private:
|
|
};
|
|
|
|
#endif |