Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qandroidvideoframefactory_p.h
Go to the documentation of this file.
1
// Copyright (C) 2024 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
#
ifndef
QANDROIDVIDEOFRAMEFACTORY_H
5
#
define
QANDROIDVIDEOFRAMEFACTORY_H
6
7
//
8
// W A R N I N G
9
// -------------
10
//
11
// This file is not part of the Qt API. It exists purely as an
12
// implementation detail. This header file may change from version to
13
// version without notice, or even be removed.
14
//
15
// We mean it.
16
//
17
18
#
include
<
QtFFmpegMediaPluginImpl
/
private
/
qandroidvideoframebuffer_p
.
h
>
19
#
include
<
memory
>
20
21
class
QAndroidVideoFrameFactory
:
public
QAndroidVideoFrameBuffer
::
FrameReleaseDelegate
22
,
public
std
::
enable_shared_from_this
<
QAndroidVideoFrameFactory
>
23
{
24
public
:
25
using
QAndroidVideoFrameFactoryPtr
=
std
::shared_ptr<
QAndroidVideoFrameFactory
>;
26
static
QAndroidVideoFrameFactoryPtr
create
() {
27
return
std::shared_ptr<QAndroidVideoFrameFactory>(
28
new
QAndroidVideoFrameFactory
());
29
};
30
QVideoFrame
createVideoFrame
(QtJniTypes::Image frame,
31
QtVideo::Rotation rotation =
QtVideo
::
Rotation
::
None
);
32
void
onFrameReleased
()
override
;
33
34
Q_DISABLE_COPY_MOVE
(
QAndroidVideoFrameFactory
)
35
private
:
36
37
QAndroidVideoFrameFactory
() {}
38
std
::
atomic_int
m_framesCounter
= 0;
39
qint64 m_lastTimestamp = 0;
40
};
41
42
#
endif
// QANDROIDVIDEOFRAMEFACTORY_H
QAndroidVideoFrameFactory
Definition
qandroidvideoframefactory_p.h:23
QAndroidVideoFrameFactory::createVideoFrame
QVideoFrame createVideoFrame(QtJniTypes::Image frame, QtVideo::Rotation rotation=QtVideo::Rotation::None)
Definition
qandroidvideoframefactory.cpp:17
QAndroidVideoFrameFactory::create
static QAndroidVideoFrameFactoryPtr create()
Definition
qandroidvideoframefactory_p.h:26
QAndroidVideoFrameFactory::QAndroidVideoFrameFactoryPtr
std::shared_ptr< QAndroidVideoFrameFactory > QAndroidVideoFrameFactoryPtr
Definition
qandroidvideoframefactory_p.h:25
QAndroidVideoFrameFactory::onFrameReleased
void onFrameReleased() override
Definition
qandroidvideoframefactory.cpp:47
std
[33]
Definition
src_corelib_tools_qhash.cpp:421
qtmultimedia
src
plugins
multimedia
ffmpeg
android
qandroidvideoframefactory_p.h
Generated on
for Qt by
1.14.0