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