]> git.sesse.net Git - nageru/blobdiff - httpd.h
Add a menu item to start a new video segment (cut/cue, except that would be a confusi...
[nageru] / httpd.h
diff --git a/httpd.h b/httpd.h
index d546feec22180ab4c9bf7fe10be417d9f7b6dff5..e8efc030b4706d92b64e89e7ea748c056d8f7c85 100644 (file)
--- a/httpd.h
+++ b/httpd.h
@@ -29,10 +29,14 @@ extern "C" {
 
 class HTTPD {
 public:
-       HTTPD(const char *output_filename, int width, int height);
+       HTTPD(int width, int height);
        void start(int port);
        void add_packet(const AVPacket &pkt, int64_t pts, int64_t dts);
 
+       // You can only have one going at the same time.
+       void open_output_file(const std::string &filename);
+       void close_output_file();
+
 private:
        static int answer_to_connection_thunk(void *cls, MHD_Connection *connection,
                                              const char *url, const char *method,