mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-20 08:56:47 -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
|
|
@ -5,12 +5,12 @@
|
|||
#include "memblock.h"
|
||||
#include "memchunk.h"
|
||||
|
||||
struct resampler;
|
||||
struct pa_resampler;
|
||||
|
||||
struct resampler* resampler_new(const struct pa_sample_spec *a, const struct pa_sample_spec *b);
|
||||
void resampler_free(struct resampler *r);
|
||||
struct pa_resampler* pa_resampler_new(const struct pa_sample_spec *a, const struct pa_sample_spec *b);
|
||||
void pa_resampler_free(struct pa_resampler *r);
|
||||
|
||||
size_t resampler_request(struct resampler *r, size_t out_length);
|
||||
void resampler_run(struct resampler *r, const struct memchunk *in, struct memchunk *out);
|
||||
size_t pa_resampler_request(struct pa_resampler *r, size_t out_length);
|
||||
void pa_resampler_run(struct pa_resampler *r, const struct pa_memchunk *in, struct pa_memchunk *out);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue