Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9087f773 authored by Chong Zhang's avatar Chong Zhang
Browse files

transcoding: fix typo on job request

bug: 154734285
test: unit testing with later test versions that uses
the actual request.

Change-Id: Ie4ec58b7296ba414f9fbd47f0634b38a0e2e09fc
parent 19253093
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ void TranscodingJobScheduler::updateCurrentJob_l() {
        // the topJob now.
        if (!mResourceLost) {
            if (topJob->state == Job::NOT_STARTED) {
                mTranscoder->start(topJob->key.first, topJob->key.second, curJob->request);
                mTranscoder->start(topJob->key.first, topJob->key.second, topJob->request);
            } else if (topJob->state == Job::PAUSED) {
                mTranscoder->resume(topJob->key.first, topJob->key.second);
            }