mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
Revert commit #39975dc3c6 from Feb 7th
'using namespace ARDOUR;' is needed for the MSVC build. (I guess it could be enclosed by a #ifdef if it's causing issues for the gcc build)
This commit is contained in:
parent
48e59dab90
commit
a463a1e0ea
1 changed files with 3 additions and 2 deletions
|
|
@ -35,10 +35,11 @@
|
|||
|
||||
#include "pbd/i18n.h"
|
||||
|
||||
using namespace ARDOUR;
|
||||
using namespace ARDOUR::DSP;
|
||||
using namespace ArdourZita;
|
||||
|
||||
Convolution::Convolution (ARDOUR::Session& session, uint32_t n_in, uint32_t n_out)
|
||||
Convolution::Convolution (Session& session, uint32_t n_in, uint32_t n_out)
|
||||
: SessionHandleRef (session)
|
||||
, _n_samples (0)
|
||||
, _max_size (0)
|
||||
|
|
@ -217,7 +218,7 @@ Convolution::run (BufferSet& bufs, ChanMapping const& in_map, ChanMapping const&
|
|||
/* ****************************************************************************/
|
||||
|
||||
Convolver::Convolver (
|
||||
ARDOUR::Session& session,
|
||||
Session& session,
|
||||
std::string const& path,
|
||||
IRChannelConfig irc,
|
||||
IRSettings irs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue