mistserver/src/output/output_h264.h
2021-10-19 22:29:40 +02:00

18 lines
343 B
C++

#include "output_http.h"
namespace Mist{
class OutH264 : public HTTPOutput{
public:
OutH264(Socket::Connection &conn);
static void init(Util::Config *cfg);
void onHTTP();
void sendNext();
void sendHeader();
private:
bool isRecording();
bool keysOnly;
};
}// namespace Mist
typedef Mist::OutH264 mistOut;