summaryrefslogtreecommitdiffstats
path: root/src/plugins/multimedia/ffmpeg/qffmpegthread.cpp
blob: fb14ced54e900c4a7b282912e9dfcf7d79aa55bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#include "qffmpegthread_p.h"


QT_BEGIN_NAMESPACE

using namespace QFFmpeg;

void ConsumerThread::stopAndDelete()
{
    {
        QMutexLocker locker(&m_loopDataMutex);
        m_exit = true;
    }
    dataReady();
    wait();
    delete this;
}

void ConsumerThread::dataReady()
{
    m_condition.wakeAll();
}

void ConsumerThread::run()
{
    init();

    while (true) {

        {
            QMutexLocker locker(&m_loopDataMutex);
            while (!hasData() && !m_exit)
                m_condition.wait(&m_loopDataMutex);

            if (m_exit)
                break;
        }

        processOne();
    }

    cleanup();
}

QMutexLocker<QMutex> ConsumerThread::lockLoopData() const
{
    return QMutexLocker(&m_loopDataMutex);
}

QT_END_NAMESPACE