mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -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
|
|
@ -3,18 +3,18 @@
|
|||
|
||||
#include "memblock.h"
|
||||
|
||||
struct memchunk {
|
||||
struct memblock *memblock;
|
||||
struct pa_memchunk {
|
||||
struct pa_memblock *memblock;
|
||||
size_t index, length;
|
||||
};
|
||||
|
||||
void memchunk_make_writable(struct memchunk *c);
|
||||
void pa_memchunk_make_writable(struct pa_memchunk *c);
|
||||
|
||||
struct mcalign;
|
||||
struct pa_mcalign;
|
||||
|
||||
struct mcalign *mcalign_new(size_t base);
|
||||
void mcalign_free(struct mcalign *m);
|
||||
void mcalign_push(struct mcalign *m, const struct memchunk *c);
|
||||
int mcalign_pop(struct mcalign *m, struct memchunk *c);
|
||||
struct pa_mcalign *pa_mcalign_new(size_t base);
|
||||
void pa_mcalign_free(struct pa_mcalign *m);
|
||||
void pa_mcalign_push(struct pa_mcalign *m, const struct pa_memchunk *c);
|
||||
int pa_mcalign_pop(struct pa_mcalign *m, struct pa_memchunk *c);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue