summaryrefslogtreecommitdiffstats
path: root/server/stream.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-10 11:57:38 +0000
committerFrediano Ziglio <fziglio@redhat.com>2015-11-10 16:09:28 +0000
commit885557f117b77b4fb2e8cd92d90a90b961081af8 (patch)
tree75e5e3b1dced4d888175244c67d12c3af89c5675 /server/stream.h
parent1e4abdc15d83c605b020682979abc03dc4848f31 (diff)
downloadspice-885557f117b77b4fb2e8cd92d90a90b961081af8.tar.gz
spice-885557f117b77b4fb2e8cd92d90a90b961081af8.tar.xz
spice-885557f117b77b4fb2e8cd92d90a90b961081af8.zip
worker: move stream functions to a new stream.c file
Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com> Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Jonathon Jongsma <jjongsma@redhat.com> Acked-by: Fabiano Fidêncio <fidencio@redhat.com>
Diffstat (limited to 'server/stream.h')
-rw-r--r--server/stream.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/stream.h b/server/stream.h
index 1587d4e6..30b86244 100644
--- a/server/stream.h
+++ b/server/stream.h
@@ -103,6 +103,9 @@ typedef struct StreamClipItem {
SpiceClipRects *rects;
} StreamClipItem;
+StreamClipItem *stream_clip_item_new(DisplayChannelClient* dcc,
+ StreamAgent *agent);
+
struct Stream {
uint8_t refs;
Drawable *current;
@@ -119,4 +122,6 @@ struct Stream {
uint32_t input_fps;
};
+void stream_agent_stats_print(StreamAgent *agent);
+
#endif /* STREAM_H */