diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-07-08 21:13:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-07-08 21:13:06 +0100 |
| commit | 02cc8c7680381c123a31c23a43f6b34a04c2115a (patch) | |
| tree | 5891c4c0954a05eaa538feb704cbc99e2ab1d05d /src/lib/job_manager.h | |
| parent | 167cfacc7fe88f69fa433c46b62a54703ed6dca3 (diff) | |
Fix failure to analyse audio in some cases.
This fixes audio-only content when the first-emitted audio is not
at time zero. This used to cause a seek which is not possible
with audio-only. This commit removes the unnecessary seek which
was due to missing silent-padding of the first-emitted audio.
Diffstat (limited to 'src/lib/job_manager.h')
| -rw-r--r-- | src/lib/job_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/job_manager.h b/src/lib/job_manager.h index 70ac00b37..c6be2a78e 100644 --- a/src/lib/job_manager.h +++ b/src/lib/job_manager.h @@ -32,7 +32,7 @@ class Job; class Film; class Playlist; -extern void wait_for_jobs (); +extern bool wait_for_jobs (); /** @class JobManager * @brief A simple scheduler for jobs. @@ -61,7 +61,7 @@ public: private: /* This function is part of the test suite */ - friend void ::wait_for_jobs (); + friend bool ::wait_for_jobs (); JobManager (); ~JobManager (); |
