]> code.delx.au - pulseaudio/blob - src/modules/rtp/sdp.h
Use LGPL 2.1 on all files previously using LGPL 2
[pulseaudio] / src / modules / rtp / sdp.h
1 #ifndef foosdphfoo
2 #define foosdphfoo
3
4 /***
5 This file is part of PulseAudio.
6
7 Copyright 2006 Lennart Poettering
8
9 PulseAudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published
11 by the Free Software Foundation; either version 2.1 of the License,
12 or (at your option) any later version.
13
14 PulseAudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with PulseAudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 USA.
23 ***/
24
25 #include <inttypes.h>
26 #include <sys/socket.h>
27 #include <sys/types.h>
28
29 #include <pulse/sample.h>
30
31 #define PA_SDP_HEADER "v=0\n"
32
33 typedef struct pa_sdp_info {
34 char *origin;
35 char *session_name;
36
37 struct sockaddr_storage sa;
38 socklen_t salen;
39
40 pa_sample_spec sample_spec;
41 uint8_t payload;
42 } pa_sdp_info;
43
44 char *pa_sdp_build(int af, const void *src, const void *dst, const char *name, uint16_t port, uint8_t payload, const pa_sample_spec *ss);
45
46 pa_sdp_info *pa_sdp_parse(const char *t, pa_sdp_info *info, int is_goodbye);
47
48 void pa_sdp_info_destroy(pa_sdp_info *i);
49
50 #endif