summaryrefslogtreecommitdiffstats
path: root/src/polypdef.h
blob: 80b3cc6c103ed80cb6fc01cc8881c14adb1e46f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef foopolypdefhfoo
#define foopolypdefhfoo

#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;
};


#endif