mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-14 01:26:42 +02:00
16 lines
207 B
C++
16 lines
207 B
C++
#ifndef PCM_ENCODER_H
|
|
#define PCM_ENCODER_H
|
|
#include "encoder.h"
|
|
|
|
|
|
class PcmEncoder : public Encoder
|
|
{
|
|
public:
|
|
PcmEncoder(const SampleFormat& format);
|
|
virtual double encode(PcmChunk* chunk);
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|