summaryrefslogtreecommitdiffstats
path: root/src/add.h
blob: 6a31bc58341fcb923c1e860f92c855ef75db8925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef foosydneyaddhfoo
#define foosydneyaddhfoo

#include <sys/types.h>
#include <inttypes.h>

#include "sydney.h"

typedef void (*sa_add_func_t) (void *dst, size_t dstr, const void *src1, size_t sstr1, const void *src2, size_t sstr2, size_t bytes);

sa_add_func_t sa_get_add_func(sa_pcm_format_t f);

#endif