summaryrefslogtreecommitdiffstats
path: root/src/packet.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-03 23:35:12 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-03 23:35:12 +0000
commite61c2dddb7bc392ab4073d5691870615ada82922 (patch)
treeb7e98c4232ca855c7bac6ba88e47b7ff45a9cbe1 /src/packet.h
parenta8a5ab1c79c0b6567ecc98343ff1ae944f2285b9 (diff)
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
Diffstat (limited to 'src/packet.h')
-rw-r--r--src/packet.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/packet.h b/src/packet.h
index 7e2e0066..b6024dd0 100644
--- a/src/packet.h
+++ b/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