mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-30 18:37:40 +01:00
Keep processing while locating #8392
Previously when locating process_can_proceed() was set to true, and routes were not processed while transport states are cleared. As a result live input was also not processed. This is no longer needed because the DiskReader handles seeking directly.
This commit is contained in:
parent
58cd5ca8fe
commit
1a3da7e132
1 changed files with 1 additions and 1 deletions
|
|
@ -1525,7 +1525,7 @@ private:
|
|||
|
||||
TransportFSM* _transport_fsm;
|
||||
|
||||
static const PostTransportWork ProcessCannotProceedMask = PostTransportWork (PostTransportAudition| PostTransportClearSubstate);
|
||||
static const PostTransportWork ProcessCannotProceedMask = PostTransportWork (PostTransportAudition);
|
||||
|
||||
gint _post_transport_work; /* accessed only atomic ops */
|
||||
PostTransportWork post_transport_work() const { return (PostTransportWork) g_atomic_int_get (const_cast<gint*>(&_post_transport_work)); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue