Commit 138242fb authored by Ling Hu's avatar Ling Hu Committed by Qt by Nokia
Browse files

Added resource policy support though internal plugin system


Change-Id: I374be17d49b6a5eed0b1ed94d0b9ca5f9a2caa9b
Reviewed-by: default avatarJonas Rabbe <jonas.rabbe@nokia.com>
parent 655408bc
dev 5.10 5.11 5.12 5.12.1 5.12.10 5.12.11 5.12.12 5.12.2 5.12.3 5.12.4 5.12.5 5.12.6 5.12.7 5.12.8 5.12.9 5.13 5.13.0 5.13.1 5.13.2 5.14 5.14.0 5.14.1 5.14.2 5.15 5.15.0 5.15.1 5.15.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 5.9.8 6.2 6.2.0 6.2.1 6.2.2 old/5.0 old/5.1 old/5.2 wip/cmake wip/qt6 v5.15.0-alpha1 v5.14.1 v5.14.0 v5.14.0-rc2 v5.14.0-rc1 v5.14.0-beta3 v5.14.0-beta2 v5.14.0-beta1 v5.14.0-alpha1 v5.13.2 v5.13.1 v5.13.0 v5.13.0-rc3 v5.13.0-rc2 v5.13.0-rc1 v5.13.0-beta4 v5.13.0-beta3 v5.13.0-beta2 v5.13.0-beta1 v5.13.0-alpha1 v5.12.7 v5.12.6 v5.12.5 v5.12.4 v5.12.3 v5.12.2 v5.12.1 v5.12.0 v5.12.0-rc2 v5.12.0-rc1 v5.12.0-beta4 v5.12.0-beta3 v5.12.0-beta2 v5.12.0-beta1 v5.12.0-alpha1 v5.11.3 v5.11.2 v5.11.1 v5.11.0 v5.11.0-rc2 v5.11.0-rc1 v5.11.0-beta4 v5.11.0-beta3 v5.11.0-beta2 v5.11.0-beta1 v5.11.0-alpha1 v5.10.1 v5.10.0 v5.10.0-rc3 v5.10.0-rc2 v5.10.0-rc1 v5.10.0-beta4 v5.10.0-beta3 v5.10.0-beta2 v5.10.0-beta1 v5.10.0-alpha1 v5.9.9 v5.9.8 v5.9.7 v5.9.6 v5.9.5 v5.9.4 v5.9.3 v5.9.2 v5.9.1 v5.9.0 v5.9.0-rc2 v5.9.0-rc1 v5.9.0-beta4 v5.9.0-beta3 v5.9.0-beta2 v5.9.0-beta1 v5.9.0-alpha1 v5.8.0 v5.8.0-rc1 v5.8.0-beta1 v5.8.0-alpha1 v5.7.1 v5.7.0 v5.7.0-rc1 v5.7.0-beta1 v5.7.0-alpha1 v5.6.3 v5.6.2 v5.6.1 v5.6.1-1 v5.6.0 v5.6.0-rc1 v5.6.0-beta1 v5.6.0-alpha1 v5.5.1 v5.5.0 v5.5.0-rc1 v5.5.0-beta1 v5.5.0-alpha1 v5.4.2 v5.4.1 v5.4.0 v5.4.0-rc1 v5.4.0-beta1 v5.4.0-alpha1 v5.3.2 v5.3.1 v5.3.0 v5.3.0-rc1 v5.3.0-beta1 v5.3.0-alpha1 v5.2.1 v5.2.0 v5.2.0-rc1 v5.2.0-beta1 v5.2.0-alpha1 v5.1.1 v5.1.0 v5.1.0-rc2 v5.1.0-rc1 v5.1.0-beta1 v5.1.0-alpha1 v5.0.2 v5.0.1 v5.0.0 v5.0.0-rc2 v5.0.0-rc1 v5.0.0-beta2 v5.0.0-beta1 qt-v5.0.0-alpha1
No related merge requests found
Showing with 419 additions and 46 deletions
...@@ -19,6 +19,7 @@ load(qt_module_config) ...@@ -19,6 +19,7 @@ load(qt_module_config)
HEADERS += qtmultimediaversion.h HEADERS += qtmultimediaversion.h
INCLUDEPATH *= . INCLUDEPATH *= .
PRIVATE_HEADERS += \ PRIVATE_HEADERS += \
...@@ -27,6 +28,9 @@ PRIVATE_HEADERS += \ ...@@ -27,6 +28,9 @@ PRIVATE_HEADERS += \
qmediapluginloader_p.h \ qmediapluginloader_p.h \
qmediaservice_p.h \ qmediaservice_p.h \
qmediaserviceprovider_p.h \ qmediaserviceprovider_p.h \
qmediaresourcepolicyplugin_p.h \
qmediaresourcepolicy_p.h \
qmediaresourceset_p.h
PUBLIC_HEADERS += \ PUBLIC_HEADERS += \
qmediabindableinterface.h \ qmediabindableinterface.h \
...@@ -47,7 +51,10 @@ SOURCES += \ ...@@ -47,7 +51,10 @@ SOURCES += \
qmediaservice.cpp \ qmediaservice.cpp \
qmediaserviceprovider.cpp \ qmediaserviceprovider.cpp \
qmediatimerange.cpp \ qmediatimerange.cpp \
qtmedianamespace.cpp qtmedianamespace.cpp \
qmediaresourcepolicyplugin_p.cpp \
qmediaresourcepolicy_p.cpp \
qmediaresourceset_p.cpp
include(audio/audio.pri) include(audio/audio.pri)
include(camera/camera.pri) include(camera/camera.pri)
......
...@@ -39,138 +39,76 @@ ...@@ -39,138 +39,76 @@
** **
****************************************************************************/ ****************************************************************************/
#include "playerresourcepolicy.h" #include "qmediaresourcepolicy_p.h"
#include "qmediapluginloader_p.h"
//#define DEBUG_RESOURCE_POLICY #include "qmediaresourcepolicyplugin_p.h"
#include <QtCore/qdebug.h> #include "qmediaresourceset_p.h"
#ifdef HAVE_RESOURCE_POLICY namespace {
#include <policy/resource.h> class QDummyMediaPlayerResourceSet : public QMediaPlayerResourceSetInterface
#include <policy/resources.h> {
#include <policy/resource-set.h> public:
#endif QDummyMediaPlayerResourceSet(QObject *parent)
: QMediaPlayerResourceSetInterface(parent)
PlayerResourcePolicy::PlayerResourcePolicy(QObject *parent) : {
QObject(parent), }
m_videoEnabled(true),
m_resourceSet(0), bool isVideoEnabled() const
m_status(PlayerResourcePolicy::Initial) {
{ return true;
#ifdef HAVE_RESOURCE_POLICY }
m_resourceSet = new ResourcePolicy::ResourceSet("player", this);
m_resourceSet->setAlwaysReply(); bool isGranted() const
{
ResourcePolicy::AudioResource *audioResource = new ResourcePolicy::AudioResource("player"); return true;
audioResource->setProcessID(QCoreApplication::applicationPid()); }
audioResource->setStreamTag("media.name", "*");
m_resourceSet->addResourceObject(audioResource); bool isAvailable() const
{
m_resourceSet->addResource(ResourcePolicy::VideoPlaybackType); return true;
m_resourceSet->update(); }
connect(m_resourceSet, SIGNAL(resourcesGranted(const QList<ResourcePolicy::ResourceType>)), void acquire() {}
this, SLOT(handleResourcesGranted())); void release() {}
connect(m_resourceSet, SIGNAL(resourcesDenied()), void setVideoEnabled(bool) {}
this, SLOT(handleResourcesDenied())); };
connect(m_resourceSet, SIGNAL(lostResources()),
this, SLOT(handleResourcesLost()));
connect(m_resourceSet, SIGNAL(resourcesReleasedByManager()),
this, SLOT(handleResourcesLost()));
#endif
} }
PlayerResourcePolicy::~PlayerResourcePolicy() QT_BEGIN_NAMESPACE
{
}
bool PlayerResourcePolicy::isVideoEnabled() const Q_GLOBAL_STATIC_WITH_ARGS(QMediaPluginLoader, resourcePolicyLoader,
{ (QMediaResourceSetFactoryInterface_iid, QLatin1String("resourcepolicy"), Qt::CaseInsensitive))
return m_videoEnabled;
}
void PlayerResourcePolicy::setVideoEnabled(bool enabled)
{
if (m_videoEnabled != enabled) {
m_videoEnabled = enabled;
#ifdef HAVE_RESOURCE_POLICY Q_GLOBAL_STATIC(QObject, dummyRoot)
if (enabled)
m_resourceSet->addResource(ResourcePolicy::VideoPlaybackType);
else
m_resourceSet->deleteResource(ResourcePolicy::VideoPlaybackType);
m_resourceSet->update(); QObject* QMediaResourcePolicy::createResourceSet(const QString& interfaceId)
#endif
}
}
void PlayerResourcePolicy::acquire()
{ {
#ifdef HAVE_RESOURCE_POLICY QMediaResourceSetFactoryInterface *factory =
qobject_cast<QMediaResourceSetFactoryInterface*>(resourcePolicyLoader()
#ifdef DEBUG_RESOURCE_POLICY ->instance(QLatin1String("default")));
qDebug() << Q_FUNC_INFO << "Acquire resource"; if (!factory)
#endif return 0;
m_status = RequestedResource; QObject* obj = factory->create(interfaceId);
m_resourceSet->acquire(); if (!obj) {
#else if (interfaceId == QLatin1String(QMediaPlayerResourceSetInterface_iid)) {
m_status = GrantedResource; obj = new QDummyMediaPlayerResourceSet(dummyRoot());
#endif }
} }
Q_ASSERT(obj);
void PlayerResourcePolicy::release() return obj;
{
#ifdef HAVE_RESOURCE_POLICY
#ifdef DEBUG_RESOURCE_POLICY
qDebug() << Q_FUNC_INFO << "Release resource";
#endif
m_resourceSet->release();
#endif
m_status = Initial;
}
bool PlayerResourcePolicy::isGranted() const
{
return m_status == GrantedResource;
}
bool PlayerResourcePolicy::isRequested() const
{
return m_status == RequestedResource;
}
void PlayerResourcePolicy::handleResourcesGranted()
{
m_status = GrantedResource;
#ifdef DEBUG_RESOURCE_POLICY
qDebug() << Q_FUNC_INFO << "Resource granted";
#endif
emit resourcesGranted();
}
void PlayerResourcePolicy::handleResourcesDenied()
{
m_status = Initial;
#ifdef DEBUG_RESOURCE_POLICY
qDebug() << Q_FUNC_INFO << "Resource denied";
#endif
emit resourcesDenied();
} }
void PlayerResourcePolicy::handleResourcesLost() void QMediaResourcePolicy::destroyResourceSet(QObject* resourceSet)
{ {
#ifdef DEBUG_RESOURCE_POLICY if (resourceSet->parent() == dummyRoot()) {
qDebug() << Q_FUNC_INFO << "Resource lost"; delete resourceSet;
#endif return;
if (m_status != Initial) {
m_status = Initial;
emit resourcesLost();
} }
QMediaResourceSetFactoryInterface *factory =
#ifdef HAVE_RESOURCE_POLICY qobject_cast<QMediaResourceSetFactoryInterface*>(resourcePolicyLoader()
m_resourceSet->release(); ->instance(QLatin1String("default")));
#endif if (!factory)
return;
return factory->destroy(resourceSet);
} }
QT_END_NAMESPACE
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QMEDIARESOURCEPOLICY_H
#define QMEDIARESOURCEPOLICY_H
#include <QObject>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Multimedia)
class Q_MULTIMEDIA_EXPORT QMediaResourcePolicy
{
public:
//a dummy object will always be provided if the interfaceId is not supported
template<typename T>
static T* createResourceSet(const QString& interfaceId);
static void destroyResourceSet(QObject* resourceSet);
private:
static QObject* createResourceSet(const QString& interfaceId);
};
template<typename T>
T* QMediaResourcePolicy::createResourceSet(const QString& interfaceId)
{
return qobject_cast<T*>(QMediaResourcePolicy::createResourceSet(interfaceId));
}
QT_END_NAMESPACE
QT_END_HEADER
#endif // QMEDIARESOURCEPOLICY_H
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qmediaresourcepolicyplugin_p.h"
QT_BEGIN_NAMESPACE
QMediaResourcePolicyPlugin::QMediaResourcePolicyPlugin(QObject *parent)
: QObject(parent)
{
}
QMediaResourcePolicyPlugin::~QMediaResourcePolicyPlugin()
{
}
QT_END_NAMESPACE
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QRESOURCEPOLICYPLUGIN_P_H
#define QRESOURCEPOLICYPLUGIN_P_H
#include <QObject>
#include <qtmultimediadefs.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Multimedia)
struct Q_MULTIMEDIA_EXPORT QMediaResourceSetFactoryInterface
{
virtual QObject* create(const QString& interfaceId) = 0;
virtual void destroy(QObject *resourceSet) = 0;
};
#define QMediaResourceSetFactoryInterface_iid \
"org.qt-project.qt.mediaresourcesetfactory/5.0"
Q_DECLARE_INTERFACE(QMediaResourceSetFactoryInterface, QMediaResourceSetFactoryInterface_iid)
class Q_MULTIMEDIA_EXPORT QMediaResourcePolicyPlugin : public QObject, public QMediaResourceSetFactoryInterface
{
Q_OBJECT
Q_INTERFACES(QMediaResourceSetFactoryInterface)
public:
QMediaResourcePolicyPlugin(QObject *parent = 0);
~QMediaResourcePolicyPlugin();
};
QT_END_NAMESPACE
QT_END_HEADER
#endif // QRESOURCEPOLICYPLUGIN_P_H
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qmediaresourceset_p.h"
QT_BEGIN_NAMESPACE
QMediaPlayerResourceSetInterface::QMediaPlayerResourceSetInterface(QObject *parent)
: QObject(parent)
{
}
QT_END_NAMESPACE
...@@ -39,52 +39,45 @@ ...@@ -39,52 +39,45 @@
** **
****************************************************************************/ ****************************************************************************/
#ifndef PLAYERRESOURCEPOLICY_H #ifndef QMEDIARESOURCESET_P_H
#define PLAYERRESOURCEPOLICY_H #define QMEDIARESOURCESET_P_H
#include <QObject>
#include <qtmultimediadefs.h>
#include <QtCore/qobject.h> QT_BEGIN_HEADER
namespace ResourcePolicy { QT_BEGIN_NAMESPACE
class ResourceSet;
}; QT_MODULE(Multimedia)
#define QMediaPlayerResourceSetInterface_iid \
"org.qt-project.qt.mediaplayerresourceset/5.0"
class PlayerResourcePolicy : public QObject class Q_MULTIMEDIA_EXPORT QMediaPlayerResourceSetInterface : public QObject
{ {
Q_OBJECT Q_OBJECT
public: public:
PlayerResourcePolicy(QObject *parent = 0); virtual bool isVideoEnabled() const = 0;
~PlayerResourcePolicy(); virtual bool isGranted() const = 0;
virtual bool isAvailable() const = 0;
bool isVideoEnabled() const; virtual void acquire() = 0;
bool isGranted() const; virtual void release() = 0;
bool isRequested() const; virtual void setVideoEnabled(bool enabled) = 0;
Q_SIGNALS: Q_SIGNALS:
void resourcesDenied();
void resourcesGranted(); void resourcesGranted();
void resourcesLost(); void resourcesLost();
void resourcesDenied();
void resourcesReleased();
void availabilityChanged(bool available);
public Q_SLOTS: protected:
void acquire(); QMediaPlayerResourceSetInterface(QObject *parent = 0);
void release(); };
void setVideoEnabled(bool enabled);
private Q_SLOTS:
void handleResourcesGranted();
void handleResourcesDenied();
void handleResourcesLost();
private: QT_END_NAMESPACE
enum ResourceStatus {
Initial = 0,
RequestedResource,
GrantedResource
};
bool m_videoEnabled; QT_END_HEADER
ResourcePolicy::ResourceSet *m_resourceSet;
ResourceStatus m_status;
};
#endif #endif // QMEDIARESOURCESET_P_H
...@@ -7,15 +7,13 @@ HEADERS += \ ...@@ -7,15 +7,13 @@ HEADERS += \
$$PWD/qgstreamerplayerservice.h \ $$PWD/qgstreamerplayerservice.h \
$$PWD/qgstreamerplayersession.h \ $$PWD/qgstreamerplayersession.h \
$$PWD/qgstreamerstreamscontrol.h \ $$PWD/qgstreamerstreamscontrol.h \
$$PWD/qgstreamermetadataprovider.h \ $$PWD/qgstreamermetadataprovider.h
$$PWD/playerresourcepolicy.h
SOURCES += \ SOURCES += \
$$PWD/qgstreamerplayercontrol.cpp \ $$PWD/qgstreamerplayercontrol.cpp \
$$PWD/qgstreamerplayerservice.cpp \ $$PWD/qgstreamerplayerservice.cpp \
$$PWD/qgstreamerplayersession.cpp \ $$PWD/qgstreamerplayersession.cpp \
$$PWD/qgstreamerstreamscontrol.cpp \ $$PWD/qgstreamerstreamscontrol.cpp \
$$PWD/qgstreamermetadataprovider.cpp \ $$PWD/qgstreamermetadataprovider.cpp
$$PWD/playerresourcepolicy.cpp
...@@ -41,10 +41,10 @@ ...@@ -41,10 +41,10 @@
#include "qgstreamerplayercontrol.h" #include "qgstreamerplayercontrol.h"
#include "qgstreamerplayersession.h" #include "qgstreamerplayersession.h"
#include "playerresourcepolicy.h"
#include <private/qmediaplaylistnavigator_p.h> #include <private/qmediaplaylistnavigator_p.h>
#include <private/qmediaresourcepolicy_p.h>
#include <private/qmediaresourceset_p.h>
#include <QtCore/qdir.h> #include <QtCore/qdir.h>
#include <QtCore/qsocketnotifier.h> #include <QtCore/qsocketnotifier.h>
...@@ -78,7 +78,8 @@ QGstreamerPlayerControl::QGstreamerPlayerControl(QGstreamerPlayerSession *sessio ...@@ -78,7 +78,8 @@ QGstreamerPlayerControl::QGstreamerPlayerControl(QGstreamerPlayerSession *sessio
m_fifoFd[0] = -1; m_fifoFd[0] = -1;
m_fifoFd[1] = -1; m_fifoFd[1] = -1;
m_resources = new PlayerResourcePolicy(this); m_resources = QMediaResourcePolicy::createResourceSet<QMediaPlayerResourceSetInterface>(QMediaPlayerResourceSetInterface_iid);
Q_ASSERT(m_resources);
connect(m_session, SIGNAL(positionChanged(qint64)), connect(m_session, SIGNAL(positionChanged(qint64)),
this, SLOT(updatePosition(qint64))); this, SLOT(updatePosition(qint64)));
...@@ -116,6 +117,8 @@ QGstreamerPlayerControl::QGstreamerPlayerControl(QGstreamerPlayerSession *sessio ...@@ -116,6 +117,8 @@ QGstreamerPlayerControl::QGstreamerPlayerControl(QGstreamerPlayerSession *sessio
QGstreamerPlayerControl::~QGstreamerPlayerControl() QGstreamerPlayerControl::~QGstreamerPlayerControl()
{ {
QMediaResourcePolicy::destroyResourceSet(m_resources);
if (m_fifoFd[0] >= 0) { if (m_fifoFd[0] >= 0) {
::close(m_fifoFd[0]); ::close(m_fifoFd[0]);
::close(m_fifoFd[1]); ::close(m_fifoFd[1]);
...@@ -243,7 +246,7 @@ void QGstreamerPlayerControl::playOrPause(QMediaPlayer::State newState) ...@@ -243,7 +246,7 @@ void QGstreamerPlayerControl::playOrPause(QMediaPlayer::State newState)
m_seekToStartPending = true; m_seekToStartPending = true;
} }
if (!m_resources->isGranted() && !m_resources->isRequested()) if (!m_resources->isGranted())
m_resources->acquire(); m_resources->acquire();
if (m_resources->isGranted()) { if (m_resources->isGranted()) {
...@@ -350,7 +353,7 @@ void QGstreamerPlayerControl::setMedia(const QMediaContent &content, QIODevice * ...@@ -350,7 +353,7 @@ void QGstreamerPlayerControl::setMedia(const QMediaContent &content, QIODevice *
m_session->showPrerollFrames(false); // do not show prerolled frames until pause() or play() explicitly called m_session->showPrerollFrames(false); // do not show prerolled frames until pause() or play() explicitly called
if (!content.isNull() || stream) { if (!content.isNull() || stream) {
if (!m_resources->isRequested() && !m_resources->isGranted()) if (!m_resources->isGranted())
m_resources->acquire(); m_resources->acquire();
if (!m_resources->isGranted()) { if (!m_resources->isGranted()) {
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
#include <limits.h> #include <limits.h>
class PlayerResourcePolicy; class QMediaPlayerResourceSetInterface;
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
class QMediaPlaylist; class QMediaPlaylist;
...@@ -151,7 +151,7 @@ private: ...@@ -151,7 +151,7 @@ private:
int m_bufferOffset; int m_bufferOffset;
char m_buffer[PIPE_BUF]; char m_buffer[PIPE_BUF];
PlayerResourcePolicy *m_resources; QMediaPlayerResourceSetInterface *m_resources;
}; };
QT_END_NAMESPACE QT_END_NAMESPACE
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment