NO-OP: more libardour whitespace tweaks

This commit is contained in:
Robin Gareus 2019-04-08 19:36:22 +02:00
parent 2f727a6a32
commit 9f77a6f7fe
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 20 additions and 18 deletions

View file

@ -1,5 +1,6 @@
/*
Copyright (C) 2010 Paul Davis
Copyright (C) 2017 Robin Gareus <robin@gareus.org>
Author: Torben Hohn
This program is free software; you can redistribute it and/or modify
@ -79,7 +80,7 @@ protected:
virtual void session_going_away ();
private:
volatile bool _threads_active;
volatile bool _threads_active;
void reset_thread_list ();
void drop_threads ();
@ -110,25 +111,26 @@ private:
bool _graph_empty;
// chain swapping
Glib::Threads::Mutex _swap_mutex;
Glib::Threads::Cond _cleanup_cond;
/* chain swapping */
Glib::Threads::Mutex _swap_mutex;
Glib::Threads::Cond _cleanup_cond;
volatile int _current_chain;
volatile int _pending_chain;
volatile int _setup_chain;
// parameter caches.
/* parameter caches */
pframes_t _process_nframes;
samplepos_t _process_start_sample;
samplepos_t _process_end_sample;
bool _process_can_record;
bool _process_non_rt_pending;
bool _process_can_record;
bool _process_non_rt_pending;
bool _process_noroll;
int _process_retval;
bool _process_need_butler;
// enginer / thread connection
/* engine / thread connection */
PBD::ScopedConnectionList engine_connections;
void engine_stopped ();
};

View file

@ -90,18 +90,18 @@ public:
void ensure_disk_file (const Lock& lock);
samplecnt_t read_unlocked (const Lock& lock,
Evoral::EventSink<samplepos_t>& dst,
samplepos_t position,
samplepos_t start,
samplecnt_t cnt,
Evoral::Range<samplepos_t>* loop_range,
MidiStateTracker* tracker,
MidiChannelFilter* filter) const;
Evoral::EventSink<samplepos_t>& dst,
samplepos_t position,
samplepos_t start,
samplecnt_t cnt,
Evoral::Range<samplepos_t>* loop_range,
MidiStateTracker* tracker,
MidiChannelFilter* filter) const;
samplecnt_t write_unlocked (const Lock& lock,
MidiRingBuffer<samplepos_t>& src,
samplepos_t position,
samplecnt_t cnt);
MidiRingBuffer<samplepos_t>& src,
samplepos_t position,
samplecnt_t cnt);
};