summaryrefslogtreecommitdiffstats
path: root/src/sample-util.h
blob: 0a3f7c89452694aea4f923a50f43332ed28ae765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef foosampleutilhfoo
#define foosampleutilhfoo

#include "sample.h"
#include "memblock.h"

#define DEFAULT_SAMPLE_SPEC default_sample_spec

extern struct pa_sample_spec default_sample_spec;

struct memblock *silence_memblock(struct memblock* b, struct pa_sample_spec *spec);
void silence_memchunk(struct memchunk *c, struct pa_sample_spec *spec);
void silence_memory(void *p, size_t length, struct pa_sample_spec *spec);

struct mix_info {
    struct memchunk chunk;
    uint8_t volume;
    void *userdata;
};

size_t mix_chunks(struct mix_info channels[], unsigned nchannels, void *data, size_t length, struct pa_sample_spec *spec, uint8_t volume);

#endif