summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vbap.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-11-26 19:57:03 +0000
committerDavid Robillard <d@drobilla.net>2010-11-26 19:57:03 +0000
commita8d4e33d1b61b7fc2eadec355689ccbe93fece22 (patch)
tree00b0be9939170098593705acc2d3a688b84ee0cb /libs/ardour/ardour/vbap.h
parent1445bf5fc59dbca558d35b7bf7086e3032bbc7b4 (diff)
Fix more broken indentation (whitespace changes only).
git-svn-id: svn://localhost/ardour2/branches/3.0@8094 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/vbap.h')
-rw-r--r--libs/ardour/ardour/vbap.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/libs/ardour/ardour/vbap.h b/libs/ardour/ardour/vbap.h
index e3dc60c97c..4b6b42e732 100644
--- a/libs/ardour/ardour/vbap.h
+++ b/libs/ardour/ardour/vbap.h
@@ -30,40 +30,40 @@ namespace ARDOUR {
class Speakers;
class VBAPanner : public StreamPanner {
- public:
- VBAPanner (Panner& parent, Evoral::Parameter param, Speakers& s);
- ~VBAPanner ();
+public:
+ VBAPanner (Panner& parent, Evoral::Parameter param, Speakers& s);
+ ~VBAPanner ();
- static StreamPanner* factory (Panner& parent, Evoral::Parameter param, Speakers& s);
- static std::string name;
+ static StreamPanner* factory (Panner& parent, Evoral::Parameter param, Speakers& s);
+ static std::string name;
- void do_distribute (AudioBuffer&, BufferSet& obufs, gain_t gain_coeff, nframes_t nframes);
+ void do_distribute (AudioBuffer&, BufferSet& obufs, gain_t gain_coeff, nframes_t nframes);
void do_distribute_automated (AudioBuffer& src, BufferSet& obufs,
- nframes_t start, nframes_t end, nframes_t nframes, pan_t** buffers);
+ nframes_t start, nframes_t end, nframes_t nframes, pan_t** buffers);
- void set_azimuth_elevation (double azimuth, double elevation);
+ void set_azimuth_elevation (double azimuth, double elevation);
XMLNode& state (bool full_state);
XMLNode& get_state ();
int set_state (const XMLNode&, int version);
- /* there never was any old-school automation */
+ /* there never was any old-school automation */
int load (std::istream&, std::string path, uint32_t&) { return 0; }
- private:
- bool _dirty;
- double gains[3];
- double desired_gains[3];
- int outputs[3];
- int desired_outputs[3];
+private:
+ bool _dirty;
+ double gains[3];
+ double desired_gains[3];
+ int outputs[3];
+ int desired_outputs[3];
- VBAPSpeakers& _speakers;
+ VBAPSpeakers& _speakers;
- void compute_gains (double g[3], int ls[3], int azi, int ele);
+ void compute_gains (double g[3], int ls[3], int azi, int ele);
- void update ();
- void mark_dirty ();
+ void update ();
+ void mark_dirty ();
};
} /* namespace */