mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
add pa_ prefix to all identifiers.
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
a8a5ab1c79
commit
e61c2dddb7
91 changed files with 1795 additions and 1643 deletions
12
src/packet.h
12
src/packet.h
|
|
@ -4,17 +4,17 @@
|
|||
#include <sys/types.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct packet {
|
||||
enum { PACKET_APPENDED, PACKET_DYNAMIC } type;
|
||||
struct pa_packet {
|
||||
enum { PA_PACKET_APPENDED, PA_PACKET_DYNAMIC } type;
|
||||
unsigned ref;
|
||||
size_t length;
|
||||
uint8_t *data;
|
||||
};
|
||||
|
||||
struct packet* packet_new(size_t length);
|
||||
struct packet* packet_new_dynamic(uint8_t* data, size_t length);
|
||||
struct pa_packet* pa_packet_new(size_t length);
|
||||
struct pa_packet* pa_packet_new_dynamic(uint8_t* data, size_t length);
|
||||
|
||||
struct packet* packet_ref(struct packet *p);
|
||||
void packet_unref(struct packet *p);
|
||||
struct pa_packet* pa_packet_ref(struct pa_packet *p);
|
||||
void pa_packet_unref(struct pa_packet *p);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue