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, see <http://www.gnu.org/licenses/>. 21 ***/ 22 23 #include <inttypes.h> 24 #include <sys/socket.h> 25 #include <sys/types.h> 26 27 #include <pulse/sample.h> 28 29 #define PA_SDP_HEADER "v=0\n" 30 31 typedef struct pa_sdp_info { 32 char *origin; 33 char *session_name; 34 35 struct sockaddr_storage sa; 36 socklen_t salen; 37 38 pa_sample_spec sample_spec; 39 uint8_t payload; 40 41 bool enable_opus; 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, bool enable_opus); 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 51