transcoder: Remove unused slots
Transcoder::Start() and Transcoder::Cancel() were defined as slots but never used as such.
This commit is contained in:
parent
d4c9628222
commit
8d11e9ffab
src/transcoder
@ -327,6 +327,7 @@ void Transcoder::Start() {
|
|||||||
.arg(queued_jobs_.count())
|
.arg(queued_jobs_.count())
|
||||||
.arg(max_threads()));
|
.arg(max_threads()));
|
||||||
|
|
||||||
|
// Kick off worker threads.
|
||||||
forever {
|
forever {
|
||||||
StartJobStatus status = MaybeStartNextJob();
|
StartJobStatus status = MaybeStartNextJob();
|
||||||
if (status == AllThreadsBusy || status == NoMoreJobs) break;
|
if (status == AllThreadsBusy || status == NoMoreJobs) break;
|
||||||
|
@ -65,7 +65,6 @@ class Transcoder : public QObject {
|
|||||||
|
|
||||||
GstPipelineModel* model() { return model_; }
|
GstPipelineModel* model() { return model_; }
|
||||||
|
|
||||||
public slots:
|
|
||||||
void Start();
|
void Start();
|
||||||
void Cancel();
|
void Cancel();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user