mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-01 22:58:47 -04:00
fix a memory leak in memblock.c git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@55 fefdeb5f-60dc-0310-8127-8f9354f1896f
20 lines
295 B
C
20 lines
295 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 maxlength;
|
|
uint32_t tlength;
|
|
uint32_t prebuf;
|
|
uint32_t minreq;
|
|
uint32_t fragsize;
|
|
};
|
|
|
|
|
|
#endif
|