mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-23 22:16:16 +02:00
16 lines
159 B
C++
16 lines
159 B
C++
#ifndef PCM_ENCODER_H
|
|
#define PCM_ENCODER_H
|
|
#include "encoder.h"
|
|
|
|
|
|
class PcmEncoder
|
|
{
|
|
public:
|
|
PcmEncoder();
|
|
virtual bool encode(Chunk* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|