]> git.sesse.net Git - cubemap/blobdiff - stream.h
Drop NO_LEVEL; it does not look very pretty now.
[cubemap] / stream.h
index a57c6d88e7ff0955a68e0d02fceeb0910bd7491f..a4aa642b1b81cbb5a336cd138e3fe8d94122c6f7 100644 (file)
--- a/stream.h
+++ b/stream.h
@@ -6,6 +6,7 @@
 
 #include <stddef.h>
 #include <stdint.h>
+#include <sys/types.h>
 #include <string>
 #include <vector>
 
@@ -21,6 +22,9 @@ struct Stream {
        Stream(const StreamProto &serialized);
        StreamProto serialize();
 
+       // Changes the backlog size, restructuring the data as needed.
+       void set_backlog_size(size_t new_size);
+
        std::string stream_id;
 
        // The HTTP response header, plus the video stream header (if any).
@@ -60,14 +64,15 @@ struct Stream {
        // in the list of clients to wake up when we do.
        void put_client_to_sleep(Client *client);
 
-       // Add more input data to the stream, and wake up all clients that are sleeping.
+       // Add more input data to the stream. You should probably call wake_up_all_clients()
+       // after that.
        void add_data(const char *data, ssize_t bytes);
 
-private:
-       Stream(const Stream& other);
-
        // We have more data, so mark all clients that are sleeping as ready to go.
        void wake_up_all_clients();
+
+private:
+       Stream(const Stream& other);
 };
 
 #endif  // !defined(_STREAM_H)