mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
14 lines
383 B
C
14 lines
383 B
C
#ifndef foostrbufhfoo
|
|
#define foostrbufhfoo
|
|
|
|
struct pa_strbuf;
|
|
|
|
struct pa_strbuf *pa_strbuf_new(void);
|
|
void pa_strbuf_free(struct pa_strbuf *sb);
|
|
char *pa_strbuf_tostring(struct pa_strbuf *sb);
|
|
char *pa_strbuf_tostring_free(struct pa_strbuf *sb);
|
|
|
|
int pa_strbuf_printf(struct pa_strbuf *sb, const char *format, ...);
|
|
void pa_strbuf_puts(struct pa_strbuf *sb, const char *t);
|
|
|
|
#endif
|