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