diff options
Diffstat (limited to 'src/lib.h')
-rw-r--r-- | src/lib.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -32,11 +32,13 @@ struct _TranscodeServerCtx { struct _TranscodeClientCtx { SoupMessage *msg; - GstElement *appsink; + GstElement *appsink; /* We hold an extra ref to this */ GstPad *ghostsinkpad; + GMutex can_write_chunk; - gulong first_sample_handler_id; - /* The transcode server context */ + guint timeout_handler_id; + guint seconds_since_write; + /* The transcode server context; we don't hold a ref to this */ TranscodeServerCtx *server_ctx; }; |