mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
19 lines
257 B
C
19 lines
257 B
C
|
|
#ifndef foopolypdefhfoo
|
||
|
|
#define foopolypdefhfoo
|
||
|
|
|
||
|
|
#include <inttypes.h>
|
||
|
|
|
||
|
|
enum pa_stream_direction {
|
||
|
|
PA_STREAM_PLAYBACK,
|
||
|
|
PA_STREAM_RECORD
|
||
|
|
};
|
||
|
|
|
||
|
|
struct pa_buffer_attr {
|
||
|
|
uint32_t queue_length;
|
||
|
|
uint32_t max_length;
|
||
|
|
uint32_t prebuf;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|