@@ -72,6 +72,15 @@ struct HTTPDInterface {
void (*shutdown)(void *server);
};
+/* struct containing server and client info per client AVIOContext */
+
+struct FFServerInfo {
+ struct HTTPDInterface *httpd;
+ void *server;
+ struct HTTPClient *client;
+};
+
+
/** Current HTTPDInterface implementation using lavformat */
extern struct HTTPDInterface lavfhttpd;
#endif
@@ -42,15 +42,6 @@ enum State {
};
-/* struct containing server and client info per client AVIOContext */
-
-struct FFServerInfo {
- struct HTTPDInterface *httpd;
- void *server;
- struct HTTPClient *client;
-};
-
-
struct Client {
AVFormatContext *ofmt_ctx; // writable AVFormatContext, basically our tcp connection to the client
AVFifoBuffer *buffer; // Client buffer of Segment references
Signed-off-by: Stephan Holljes <klaxa1337@googlemail.com> --- httpd.h | 9 +++++++++ publisher.h | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-)