summaryrefslogtreecommitdiffstats
path: root/src/multimedia/platform/qplatformmediaplayer.cpp
blob: ea22f94df986130264a24f8a4844bcc68d68e73a (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
54
// Copyright (C) 2016 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 "qplatformmediaplayer_p.h"
#include <private/qmediaplayer_p.h>
#include "qmediaplayer.h"
#include "qplatformmediadevices_p.h"
#include "qplatformmediaintegration_p.h"

QT_BEGIN_NAMESPACE

QPlatformMediaPlayer::QPlatformMediaPlayer(QMediaPlayer *parent) : player(parent)
{
    QPlatformMediaIntegration::instance()->mediaDevices()->prepareAudio();
}

QPlatformMediaPlayer::~QPlatformMediaPlayer()
{
}

void QPlatformMediaPlayer::stateChanged(QMediaPlayer::PlaybackState newState)
{
    if (newState == m_state)
        return;
    m_state = newState;
    player->d_func()->setState(newState);
}

void QPlatformMediaPlayer::mediaStatusChanged(QMediaPlayer::MediaStatus status)
{
    if (m_status == status)
        return;
    m_status = status;
    player->d_func()->setStatus(status);
}

void QPlatformMediaPlayer::error(int error, const QString &errorString)
{
    player->d_func()->setError(QMediaPlayer::Error(error), errorString);
}

void *QPlatformMediaPlayer::nativePipeline(QMediaPlayer *player)
{
    if (!player)
        return nullptr;

    auto playerPrivate = player->d_func();
    if (!playerPrivate || !playerPrivate->control)
        return nullptr;

    return playerPrivate->control->nativePipeline();
}

QT_END_NAMESPACE