summaryrefslogtreecommitdiffstats
path: root/add.h
blob: 35e6beeb6edc17712a61531ec63fb2fbb3a781c7 (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 (*add_func_t) (void *dst, size_t dstr, const void *src1, size_t sstr1, const void *src2, size_t sstr2, size_t bytes);

add_func_t get_add_func(sa_pcm_format_t f);

#endif