summaryrefslogtreecommitdiffstats
path: root/src/engine/mix.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/mix.hpp')
-rw-r--r--src/engine/mix.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/mix.hpp b/src/engine/mix.hpp
index 5ae8cd59..3797396b 100644
--- a/src/engine/mix.hpp
+++ b/src/engine/mix.hpp
@@ -26,11 +26,12 @@
using namespace Raul;
namespace Ingen {
+namespace Engine {
inline void
mix(Context& context, Buffer* dst, const IntrusivePtr<Buffer>* srcs, uint32_t num_srcs)
{
- using Shared::PortType;
+ using Ingen::PortType;
switch (dst->type().symbol()) {
case PortType::AUDIO:
case PortType::CONTROL:
@@ -84,6 +85,7 @@ mix(Context& context, Buffer* dst, const IntrusivePtr<Buffer>* srcs, uint32_t nu
}
}
+} // namespace Engine
} // namespace Ingen
#endif // INGEN_ENGINE_MIX_HPP