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