
- FLAC container input and output support - FLAC container analyser - FLAC codec support in EBML input and output
17 lines
401 B
C++
17 lines
401 B
C++
#include "output_http.h"
|
|
|
|
namespace Mist{
|
|
class OutFLAC : public HTTPOutput{
|
|
public:
|
|
OutFLAC(Socket::Connection &conn);
|
|
static void init(Util::Config *cfg);
|
|
virtual void respondHTTP(const HTTP::Parser &req, bool headersOnly);
|
|
void sendNext();
|
|
void sendHeader();
|
|
|
|
private:
|
|
bool isFileTarget(){return isRecording();}
|
|
};
|
|
}// namespace Mist
|
|
|
|
typedef Mist::OutFLAC mistOut;
|