summaryrefslogtreecommitdiffstats
path: root/src/modules/rtp/rtsp_client.h
diff options
context:
space:
mode:
authorColin Guthrie <pulse@colin.guthr.ie>2008-06-09 21:59:41 +0000
committerColin Guthrie <pulse@colin.guthr.ie>2008-10-08 20:32:09 +0100
commit5f527dc47944bbd97a49e8d89427d09850b28e5d (patch)
tree78117b4ed69dc3da0f57c5c5385525998a7fd1e7 /src/modules/rtp/rtsp_client.h
parent651da7d095f78e930fb758442905d5769cfda1c5 (diff)
Add seq and rtptime params to record/flush with a view to using these for timing and device suspension
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/coling@2500 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/modules/rtp/rtsp_client.h')
-rw-r--r--src/modules/rtp/rtsp_client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/rtp/rtsp_client.h b/src/modules/rtp/rtsp_client.h
index 3c5280c2..55540180 100644
--- a/src/modules/rtp/rtsp_client.h
+++ b/src/modules/rtp/rtsp_client.h
@@ -66,10 +66,10 @@ void pa_rtsp_remove_header(pa_rtsp_client *c, const char* key);
int pa_rtsp_announce(pa_rtsp_client* c, const char* sdp);
int pa_rtsp_setup(pa_rtsp_client* c);
-int pa_rtsp_record(pa_rtsp_client* c);
+int pa_rtsp_record(pa_rtsp_client* c, uint16_t* seq, uint32_t* rtptime);
int pa_rtsp_teardown(pa_rtsp_client* c);
int pa_rtsp_setparameter(pa_rtsp_client* c, const char* param);
-int pa_rtsp_flush(pa_rtsp_client* c);
+int pa_rtsp_flush(pa_rtsp_client* c, uint16_t seq, uint32_t rtptime);
#endif