2013-04-21 03:12:00 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
MODULE = 'content'
|
|
|
|
|
2013-04-23 21:54:15 +00:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'Biquad.cpp',
|
2013-06-10 20:09:01 +00:00
|
|
|
'DirectConvolver.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'DynamicsCompressor.cpp',
|
|
|
|
'DynamicsCompressorKernel.cpp',
|
2013-06-10 20:09:01 +00:00
|
|
|
'FFTConvolver.cpp',
|
|
|
|
'Reverb.cpp',
|
|
|
|
'ReverbAccumulationBuffer.cpp',
|
|
|
|
'ReverbConvolver.cpp',
|
|
|
|
'ReverbConvolverStage.cpp',
|
|
|
|
'ReverbInputBuffer.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'ZeroPole.cpp',
|
|
|
|
]
|
|
|
|
|