18 lines
343 B
C++
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;
|