NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / panners / 2in2out / panner_2in2out.cc
index 73d193d73b71529cc44c2ee55dee3b75e85c46a0..3cfc3585305a98bafdac5d865340f4e79c416838 100644 (file)
@@ -311,7 +311,7 @@ Panner2in2out::distribute_one (AudioBuffer& srcbuf, BufferSet& obufs, gain_t gai
                        if (pan != 0.0f) {
 
                                /* pan is 1 but also not 0, so we must do it "properly" */
-                               
+
                                //obufs.get_audio(1).read_from (srcbuf, nframes);
                                mix_buffers_with_gain(dst,src,nframes,pan);
 
@@ -369,17 +369,17 @@ Panner2in2out::distribute_one (AudioBuffer& srcbuf, BufferSet& obufs, gain_t gai
                        if (pan != 0.0f) {
 
                                /* pan is not 1 but also not 0, so we must do it "properly" */
-                               
+
                                mix_buffers_with_gain(dst,src,nframes,pan);
                                // obufs.get_audio(1).read_from (srcbuf, nframes);
-                               
+
                                /* XXX it would be nice to mark the buffer as written to */
                        }
 
                } else {
 
                        /* pan is 1 so we can just copy the input samples straight in */
-                       
+
                        mix_buffers_no_gain(dst,src,nframes);
 
                        /* XXX it would be nice to mark the buffer as written to */