mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-20 08:56:47 -05:00
add resampling
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@45 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
13b35a2489
commit
741aa44ffc
26 changed files with 251 additions and 115 deletions
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "sample.h"
|
||||
#include "memblock.h"
|
||||
#include "memchunk.h"
|
||||
|
||||
struct resampler;
|
||||
|
||||
|
|
@ -10,6 +11,6 @@ struct resampler* resampler_new(const struct pa_sample_spec *a, const struct pa_
|
|||
void resampler_free(struct resampler *r);
|
||||
|
||||
size_t resampler_request(struct resampler *r, size_t out_length);
|
||||
int resampler_run(struct resampler *r, struct memchunk *in, struct memchunk *out);
|
||||
void resampler_run(struct resampler *r, const struct memchunk *in, struct memchunk *out);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue