summaryrefslogtreecommitdiffstats
path: root/src/polypdef.h
blob: aa6e6bf64dc66f15533507d433fc1f74cf78b25a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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