summaryrefslogtreecommitdiffstats
path: root/src/modules/rtp/rtp.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-16 00:16:53 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-16 00:16:53 +0000
commitf1ddf052368ad96cf157297a50ffe52ee8f7ca39 (patch)
treedad94d135aeaa6b78adecbf208ffc0ef03a59acb /src/modules/rtp/rtp.h
parent1fec416db7db4ba8d2d2dd250187939f0b06dbd7 (diff)
* add RTP/SAP/SDP reciever module
* use server cookie as RTP SSRC * enable SVN keywords * add new option "loop" for RTP sender module git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@716 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/modules/rtp/rtp.h')
-rw-r--r--src/modules/rtp/rtp.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/modules/rtp/rtp.h b/src/modules/rtp/rtp.h
index 39288158..49da155b 100644
--- a/src/modules/rtp/rtp.h
+++ b/src/modules/rtp/rtp.h
@@ -40,13 +40,18 @@ typedef struct pa_rtp_context {
pa_rtp_context* pa_rtp_context_init_send(pa_rtp_context *c, int fd, uint32_t ssrc, uint8_t payload, size_t frame_size);
int pa_rtp_send(pa_rtp_context *c, size_t size, pa_memblockq *q);
-pa_rtp_context* pa_rtp_context_init_recv(pa_rtp_context *c, int fd);
-int pa_rtp_recv(pa_rtp_context *c, pa_memchunk *chunk);
+pa_rtp_context* pa_rtp_context_init_recv(pa_rtp_context *c, int fd, size_t frame_size);
+int pa_rtp_recv(pa_rtp_context *c, pa_memchunk *chunk, pa_memblock_stat *st);
+
+void pa_rtp_context_destroy(pa_rtp_context *c);
-uint8_t pa_rtp_payload_type(const pa_sample_spec *ss);
pa_sample_spec* pa_rtp_sample_spec_fixup(pa_sample_spec *ss);
int pa_rtp_sample_spec_valid(const pa_sample_spec *ss);
-void pa_rtp_context_destroy(pa_rtp_context *c);
+uint8_t pa_rtp_payload_from_sample_spec(const pa_sample_spec *ss);
+pa_sample_spec *pa_rtp_sample_spec_from_payload(uint8_t payload, pa_sample_spec *ss);
+
+const char* pa_rtp_format_to_string(pa_sample_format_t f);
+pa_sample_format_t pa_rtp_string_to_format(const char *s);
#endif