mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-05-21 16:38:10 +02:00
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
20 lines
450 B
C
20 lines
450 B
C
#ifndef foopackethfoo
|
|
#define foopackethfoo
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
|
|
struct pa_packet {
|
|
enum { PA_PACKET_APPENDED, PA_PACKET_DYNAMIC } type;
|
|
unsigned ref;
|
|
size_t length;
|
|
uint8_t *data;
|
|
};
|
|
|
|
struct pa_packet* pa_packet_new(size_t length);
|
|
struct pa_packet* pa_packet_new_dynamic(uint8_t* data, size_t length);
|
|
|
|
struct pa_packet* pa_packet_ref(struct pa_packet *p);
|
|
void pa_packet_unref(struct pa_packet *p);
|
|
|
|
#endif
|