mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-05-14 06:08:08 +02:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@80 fefdeb5f-60dc-0310-8127-8f9354f1896f
19 lines
300 B
C
19 lines
300 B
C
#ifndef foopolyplibdefhfoo
|
|
#define foopolyplibdefhfoo
|
|
|
|
#include <inttypes.h>
|
|
|
|
enum pa_stream_direction {
|
|
PA_STREAM_PLAYBACK,
|
|
PA_STREAM_RECORD
|
|
};
|
|
|
|
struct pa_buffer_attr {
|
|
uint32_t maxlength;
|
|
uint32_t tlength;
|
|
uint32_t prebuf;
|
|
uint32_t minreq;
|
|
uint32_t fragsize;
|
|
};
|
|
|
|
#endif
|