~ubuntu-branches/ubuntu/precise/lmms/precise-updates

« back to all changes in this revision

Viewing changes to plugins/ladspa_effect/LadspaEffect.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Артём Попов
  • Date: 2011-02-14 20:58:36 UTC
  • mfrom: (1.1.10 upstream) (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110214205836-2u41xus1d2mj8nfz
Tags: 0.4.10-1ubuntu1
* Merge from debian unstable (LP: #718801).  Remaining changes:
  - Replace build-dep on libwine-dev with wine1.2-dev to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * LadspaEffect.cpp - class for processing LADSPA effects
3
3
 *
4
4
 * Copyright (c) 2006-2008 Danny McRae <khjklujn/at/users.sourceforge.net>
5
 
 * Copyright (c) 2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
 
5
 * Copyright (c) 2009-2010 Tobias Doerffel <tobydox/at/users.sourceforge.net>
6
6
 *
7
7
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
8
8
 *
35
35
#include "LadspaSubPluginFeatures.h"
36
36
#include "mixer.h"
37
37
#include "EffectChain.h"
38
 
#include "automation_pattern.h"
 
38
#include "AutomationPattern.h"
39
39
#include "ControllerConnection.h"
40
40
 
41
41
#include "embed.cpp"
122
122
 
123
123
        // the IDs of re-created controls have been saved and now need to be
124
124
        // resolved again
125
 
        automationPattern::resolveAllIDs();
 
125
        AutomationPattern::resolveAllIDs();
126
126
 
127
127
        // make sure, connections are ok
128
 
        ControllerConnection::finalizeConnections();
 
128
        ControllerConnection::finalizeConnections();
129
129
}
130
130
 
131
131
 
485
485
                {
486
486
                        port_desc_t * pp = m_ports.at( proc ).at( port );
487
487
                        if( !manager->connectPort( m_key,
488
 
                                                m_handles[proc],
 
488
                                                m_handles[proc],
489
489
                                                port,
490
490
                                                pp->buffer ) )
491
491
                        {