mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
add pa_ prefix to all identifiers.
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
a8a5ab1c79
commit
e61c2dddb7
91 changed files with 1795 additions and 1643 deletions
14
src/strbuf.h
14
src/strbuf.h
|
|
@ -1,14 +1,14 @@
|
|||
#ifndef foostrbufhfoo
|
||||
#define foostrbufhfoo
|
||||
|
||||
struct strbuf;
|
||||
struct pa_strbuf;
|
||||
|
||||
struct strbuf *strbuf_new(void);
|
||||
void strbuf_free(struct strbuf *sb);
|
||||
char *strbuf_tostring(struct strbuf *sb);
|
||||
char *strbuf_tostring_free(struct strbuf *sb);
|
||||
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 strbuf_printf(struct strbuf *sb, const char *format, ...);
|
||||
void strbuf_puts(struct strbuf *sb, const char *t);
|
||||
int pa_strbuf_printf(struct pa_strbuf *sb, const char *format, ...);
|
||||
void pa_strbuf_puts(struct pa_strbuf *sb, const char *t);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue