diff options
author | Peter Meerwald <pmeerw@pmeerw.net> | 2013-02-13 17:26:59 +0100 |
---|---|---|
committer | Tanu Kaskinen <tanuk@iki.fi> | 2013-02-15 21:33:07 +0200 |
commit | 95b64804ab9d21c6807c25eb3f03afd6bfd35cb6 (patch) | |
tree | 98a92ee0d06f87f477784b5aa50c705f1cffdacb /src/pulsecore/sink-input.c | |
parent | bc8b6eaf95c0b1343194b273ae2f75a6aaca6add (diff) | |
download | pulseaudio-95b64804ab9d21c6807c25eb3f03afd6bfd35cb6.tar.gz |
core: Move pa_mix() into new file mix.c
idea is to allow optimized code path (similar to volume code)
and rework/specialize mixing cases to enable runtime performance improvements
no functionality changes in this patch
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Diffstat (limited to 'src/pulsecore/sink-input.c')
-rw-r--r-- | src/pulsecore/sink-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c index ae89aedf7..a6ddb1522 100644 --- a/src/pulsecore/sink-input.c +++ b/src/pulsecore/sink-input.c @@ -32,7 +32,7 @@ #include <pulse/util.h> #include <pulse/internal.h> -#include <pulsecore/sample-util.h> +#include <pulsecore/mix.h> #include <pulsecore/core-subscribe.h> #include <pulsecore/log.h> #include <pulsecore/play-memblockq.h> |