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:
Robin Gareus 2020-09-05 05:32:22 +02:00
parent 58cd5ca8fe
commit 1a3da7e132
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -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)); }