1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include "qplatformvideosink_p.h"
5#include "qmultimediautils_p.h"
6
7QT_BEGIN_NAMESPACE
8
9QPlatformVideoSink::QPlatformVideoSink(QVideoSink *parent) : QObject(parent), m_sink(parent) { }
10
11QPlatformVideoSink::~QPlatformVideoSink() = default;
12
13QSize QPlatformVideoSink::nativeSize() const
14{
15 QMutexLocker locker(&m_mutex);
16 return m_nativeSize;
17}
18
19void QPlatformVideoSink::setNativeSize(QSize s)
20{
21 {
22 QMutexLocker locker(&m_mutex);
23 if (m_nativeSize == s)
24 return;
25 m_nativeSize = s;
26 }
27 emit m_sink->videoSizeChanged();
28}
29
30void QPlatformVideoSink::setVideoFrame(const QVideoFrame &frame)
31{
32 bool sizeChanged = false;
33
34 {
35 QMutexLocker locker(&m_mutex);
36 if (frame == m_currentVideoFrame)
37 return;
38 m_currentVideoFrame = frame;
39 m_currentVideoFrame.setSubtitleText(m_subtitleText);
40 const QSize size = qRotatedFramePresentationSize(frame);
41 if (size != m_nativeSize) {
42 m_nativeSize = size;
43 sizeChanged = true;
44 }
45 }
46
47 // emit signals outside the mutex to avoid deadlocks on the user side
48 if (sizeChanged)
49 emit m_sink->videoSizeChanged();
50 emit m_sink->videoFrameChanged(frame);
51}
52
53QVideoFrame QPlatformVideoSink::currentVideoFrame() const
54{
55 QMutexLocker locker(&m_mutex);
56 return m_currentVideoFrame;
57}
58
59void QPlatformVideoSink::setSubtitleText(const QString &subtitleText)
60{
61 {
62 QMutexLocker locker(&m_mutex);
63 if (m_subtitleText == subtitleText)
64 return;
65 m_subtitleText = subtitleText;
66 }
67 emit m_sink->subtitleTextChanged(subtitleText);
68}
69
70QString QPlatformVideoSink::subtitleText() const
71{
72 QMutexLocker locker(&m_mutex);
73 return m_subtitleText;
74}
75
76QT_END_NAMESPACE
77
78#include "moc_qplatformvideosink_p.cpp"
79

Provided by KDAB

Privacy Policy
Start learning QML with our Intro Training
Find out more

source code of qtmultimedia/src/multimedia/platform/qplatformvideosink.cpp