2016-11-06 12:54:09 -06:00
|
|
|
#ifndef fooraoppacketbufferfoo
|
|
|
|
|
#define fooraoppacketbufferfoo
|
2016-11-06 12:54:00 -06:00
|
|
|
|
|
|
|
|
/***
|
2016-11-06 12:54:09 -06:00
|
|
|
This file is part of PulseAudio.
|
2016-11-06 12:54:00 -06:00
|
|
|
|
2016-11-06 12:54:09 -06:00
|
|
|
Copyright 2013 Matthias Wabersich
|
|
|
|
|
Copyright 2013 Hajime Fujita
|
2016-11-06 12:54:00 -06:00
|
|
|
|
2016-11-06 12:54:09 -06:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2016-11-06 12:54:00 -06:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2016-11-06 12:54:09 -06:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2016-11-06 12:54:00 -06:00
|
|
|
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.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
struct pa_raop_packet_element;
|
|
|
|
|
typedef struct pa_raop_packet_element pa_raop_packet_element;
|
|
|
|
|
|
|
|
|
|
struct pa_raop_packet_buffer;
|
|
|
|
|
typedef struct pa_raop_packet_buffer pa_raop_packet_buffer;
|
|
|
|
|
|
|
|
|
|
/* Allocates a new circular packet buffer
|
|
|
|
|
size: Maximum number of packets to store */
|
|
|
|
|
pa_raop_packet_buffer *pa_raop_pb_new(size_t size);
|
|
|
|
|
void pa_raop_pb_clear(pa_raop_packet_buffer *pb);
|
|
|
|
|
void pa_raop_pb_delete(pa_raop_packet_buffer *pb);
|
|
|
|
|
|
|
|
|
|
void pa_raop_pb_write_packet(pa_raop_packet_buffer *pb, uint16_t seq_num, const uint8_t *packet_data, ssize_t packet_length);
|
|
|
|
|
ssize_t pa_raop_pb_read_packet(pa_raop_packet_buffer *pb, uint16_t seq_num, uint8_t **packet_data);
|
|
|
|
|
|
2016-11-06 12:54:09 -06:00
|
|
|
#endif
|