From 20478a4544e8ef622434c5af5dcb4c66269a7dd9 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Tue, 6 May 2008 00:20:35 +0000 Subject: Add a skeleton raop client which builds on the rtsp client. It still requires a socket client and callback system to be added before it will be functional. git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/coling@2366 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/modules/rtp/raop_client.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/modules/rtp/raop_client.h (limited to 'src/modules/rtp/raop_client.h') diff --git a/src/modules/rtp/raop_client.h b/src/modules/rtp/raop_client.h new file mode 100644 index 00000000..499b1248 --- /dev/null +++ b/src/modules/rtp/raop_client.h @@ -0,0 +1,40 @@ +#ifndef fooraopclientfoo +#define fooraopclientfoo + +/* $Id$ */ + +/*** + This file is part of PulseAudio. + + Copyright 2008 Colin Guthrie + + PulseAudio is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + PulseAudio is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with PulseAudio; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + USA. +***/ + +#include + +typedef struct pa_raop_client pa_raop_client; + +pa_raop_client* pa_raop_client_new(void); +void pa_raop_client_free(pa_raop_client* c); + +int pa_raop_client_connect(pa_raop_client* c, pa_mainloop_api *mainloop, const char* host); + +void pa_raop_client_disconnect(pa_raop_client* c); + +void pa_raop_client_send_sample(pa_raop_client* c, const uint8_t* buffer, unsigned int count); + +#endif -- cgit