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


#endif