Signed-off-by: Stephan Holljes <[email protected]>
---
httpd.h | 9 +++++++++
publisher.h | 9 ---------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/httpd.h b/httpd.h
index a988916..1b2566e 100644
--- a/httpd.h
+++ b/httpd.h
@@ -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
diff --git a/publisher.h b/publisher.h
index e07cb10..a873d09 100644
--- a/publisher.h
+++ b/publisher.h
@@ -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
--
2.18.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel