2021-02-21 04:02:05 +00:00
|
|
|
/*
|
|
|
|
* Sailfin: a Jellyfin client written using Qt
|
|
|
|
* Copyright (C) 2021 Chris Josten and the Sailfin Contributors.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET
|
|
|
|
* OVERWRITTEN AT SOME POINT!
|
|
|
|
*
|
|
|
|
* If there is a bug in this file, please fix the code generator used to generate this file found in
|
|
|
|
* core/openapigenerator.d.
|
|
|
|
*
|
|
|
|
* This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that
|
|
|
|
* file with a newer file if needed instead of manually updating the files.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef JELLYFIN_DTO_DEVICEPROFILE_H
|
|
|
|
#define JELLYFIN_DTO_DEVICEPROFILE_H
|
|
|
|
|
|
|
|
#include <QJsonObject>
|
2021-03-20 02:30:50 +00:00
|
|
|
#include <QJsonValue>
|
2021-02-21 04:02:05 +00:00
|
|
|
#include <QList>
|
2021-03-20 02:30:50 +00:00
|
|
|
#include <QSharedPointer>
|
2021-02-21 04:02:05 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
2021-03-20 02:30:50 +00:00
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
#include "JellyfinQt/DTO/codecprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/containerprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/deviceidentification.h"
|
|
|
|
#include "JellyfinQt/DTO/directplayprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/responseprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/subtitleprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/transcodingprofile.h"
|
|
|
|
#include "JellyfinQt/DTO/xmlattribute.h"
|
|
|
|
#include "JellyfinQt/support/jsonconv.h"
|
2021-02-21 04:02:05 +00:00
|
|
|
|
|
|
|
namespace Jellyfin {
|
|
|
|
namespace DTO {
|
|
|
|
|
|
|
|
|
2021-03-20 02:30:50 +00:00
|
|
|
class DeviceProfile {
|
2021-03-24 19:04:03 +00:00
|
|
|
public:DeviceProfile();DeviceProfile(const DeviceProfile &other);
|
|
|
|
|
2021-03-20 02:30:50 +00:00
|
|
|
static DeviceProfile fromJson(QJsonObject source);
|
|
|
|
void setFromJson(QJsonObject source);
|
|
|
|
QJsonObject toJson();
|
|
|
|
|
|
|
|
// Properties
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Name.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString name() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Name.
|
|
|
|
*/
|
|
|
|
void setName(QString newName);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Id.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString jellyfinId() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Id.
|
|
|
|
*/
|
|
|
|
void setJellyfinId(QString newJellyfinId);
|
|
|
|
|
|
|
|
QSharedPointer<DeviceIdentification> identification() const;
|
|
|
|
|
|
|
|
void setIdentification(QSharedPointer<DeviceIdentification> newIdentification);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the FriendlyName.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString friendlyName() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the FriendlyName.
|
|
|
|
*/
|
|
|
|
void setFriendlyName(QString newFriendlyName);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Manufacturer.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString manufacturer() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the Manufacturer.
|
|
|
|
*/
|
|
|
|
void setManufacturer(QString newManufacturer);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ManufacturerUrl.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString manufacturerUrl() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ManufacturerUrl.
|
|
|
|
*/
|
|
|
|
void setManufacturerUrl(QString newManufacturerUrl);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelName.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString modelName() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelName.
|
|
|
|
*/
|
|
|
|
void setModelName(QString newModelName);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelDescription.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString modelDescription() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelDescription.
|
|
|
|
*/
|
|
|
|
void setModelDescription(QString newModelDescription);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelNumber.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString modelNumber() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelNumber.
|
|
|
|
*/
|
|
|
|
void setModelNumber(QString newModelNumber);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelUrl.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString modelUrl() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ModelUrl.
|
|
|
|
*/
|
|
|
|
void setModelUrl(QString newModelUrl);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SerialNumber.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString serialNumber() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SerialNumber.
|
|
|
|
*/
|
|
|
|
void setSerialNumber(QString newSerialNumber);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableAlbumArtInDidl.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableAlbumArtInDidl() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableAlbumArtInDidl.
|
|
|
|
*/
|
|
|
|
void setEnableAlbumArtInDidl(bool newEnableAlbumArtInDidl);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableSingleAlbumArtLimit.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableSingleAlbumArtLimit() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableSingleAlbumArtLimit.
|
|
|
|
*/
|
|
|
|
void setEnableSingleAlbumArtLimit(bool newEnableSingleAlbumArtLimit);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableSingleSubtitleLimit.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableSingleSubtitleLimit() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableSingleSubtitleLimit.
|
|
|
|
*/
|
|
|
|
void setEnableSingleSubtitleLimit(bool newEnableSingleSubtitleLimit);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SupportedMediaTypes.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString supportedMediaTypes() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SupportedMediaTypes.
|
|
|
|
*/
|
|
|
|
void setSupportedMediaTypes(QString newSupportedMediaTypes);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the UserId.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString userId() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the UserId.
|
|
|
|
*/
|
|
|
|
void setUserId(QString newUserId);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the AlbumArtPn.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString albumArtPn() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the AlbumArtPn.
|
|
|
|
*/
|
|
|
|
void setAlbumArtPn(QString newAlbumArtPn);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxAlbumArtWidth.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxAlbumArtWidth() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxAlbumArtWidth.
|
|
|
|
*/
|
|
|
|
void setMaxAlbumArtWidth(qint32 newMaxAlbumArtWidth);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxAlbumArtHeight.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxAlbumArtHeight() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxAlbumArtHeight.
|
|
|
|
*/
|
|
|
|
void setMaxAlbumArtHeight(qint32 newMaxAlbumArtHeight);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxIconWidth.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxIconWidth() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxIconWidth.
|
|
|
|
*/
|
|
|
|
void setMaxIconWidth(qint32 newMaxIconWidth);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxIconHeight.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxIconHeight() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxIconHeight.
|
|
|
|
*/
|
|
|
|
void setMaxIconHeight(qint32 newMaxIconHeight);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStreamingBitrate.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxStreamingBitrate() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStreamingBitrate.
|
|
|
|
*/
|
|
|
|
void setMaxStreamingBitrate(qint32 newMaxStreamingBitrate);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStaticBitrate.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxStaticBitrate() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStaticBitrate.
|
|
|
|
*/
|
|
|
|
void setMaxStaticBitrate(qint32 newMaxStaticBitrate);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MusicStreamingTranscodingBitrate.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 musicStreamingTranscodingBitrate() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MusicStreamingTranscodingBitrate.
|
|
|
|
*/
|
|
|
|
void setMusicStreamingTranscodingBitrate(qint32 newMusicStreamingTranscodingBitrate);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStaticMusicBitrate.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxStaticMusicBitrate() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the MaxStaticMusicBitrate.
|
|
|
|
*/
|
|
|
|
void setMaxStaticMusicBitrate(qint32 newMaxStaticMusicBitrate);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString sonyAggregationFlags() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.
|
|
|
|
*/
|
|
|
|
void setSonyAggregationFlags(QString newSonyAggregationFlags);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ProtocolInfo.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString protocolInfo() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ProtocolInfo.
|
|
|
|
*/
|
|
|
|
void setProtocolInfo(QString newProtocolInfo);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the TimelineOffsetSeconds.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 timelineOffsetSeconds() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the TimelineOffsetSeconds.
|
|
|
|
*/
|
|
|
|
void setTimelineOffsetSeconds(qint32 newTimelineOffsetSeconds);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether RequiresPlainVideoItems.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool requiresPlainVideoItems() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether RequiresPlainVideoItems.
|
|
|
|
*/
|
|
|
|
void setRequiresPlainVideoItems(bool newRequiresPlainVideoItems);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether RequiresPlainFolders.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool requiresPlainFolders() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether RequiresPlainFolders.
|
|
|
|
*/
|
|
|
|
void setRequiresPlainFolders(bool newRequiresPlainFolders);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableMSMediaReceiverRegistrar() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether EnableMSMediaReceiverRegistrar.
|
|
|
|
*/
|
|
|
|
void setEnableMSMediaReceiverRegistrar(bool newEnableMSMediaReceiverRegistrar);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool ignoreTranscodeByteRangeRequests() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether IgnoreTranscodeByteRangeRequests.
|
|
|
|
*/
|
|
|
|
void setIgnoreTranscodeByteRangeRequests(bool newIgnoreTranscodeByteRangeRequests);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the XmlRootAttributes.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<XmlAttribute>> xmlRootAttributes() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the XmlRootAttributes.
|
|
|
|
*/
|
|
|
|
void setXmlRootAttributes(QList<QSharedPointer<XmlAttribute>> newXmlRootAttributes);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the direct play profiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<DirectPlayProfile>> directPlayProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the direct play profiles.
|
|
|
|
*/
|
|
|
|
void setDirectPlayProfiles(QList<QSharedPointer<DirectPlayProfile>> newDirectPlayProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the transcoding profiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<TranscodingProfile>> transcodingProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the transcoding profiles.
|
|
|
|
*/
|
|
|
|
void setTranscodingProfiles(QList<QSharedPointer<TranscodingProfile>> newTranscodingProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ContainerProfiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<ContainerProfile>> containerProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ContainerProfiles.
|
|
|
|
*/
|
|
|
|
void setContainerProfiles(QList<QSharedPointer<ContainerProfile>> newContainerProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the CodecProfiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<CodecProfile>> codecProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the CodecProfiles.
|
|
|
|
*/
|
|
|
|
void setCodecProfiles(QList<QSharedPointer<CodecProfile>> newCodecProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ResponseProfiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<ResponseProfile>> responseProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the ResponseProfiles.
|
|
|
|
*/
|
|
|
|
void setResponseProfiles(QList<QSharedPointer<ResponseProfile>> newResponseProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SubtitleProfiles.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<SubtitleProfile>> subtitleProfiles() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the SubtitleProfiles.
|
|
|
|
*/
|
|
|
|
void setSubtitleProfiles(QList<QSharedPointer<SubtitleProfile>> newSubtitleProfiles);
|
2021-02-21 04:02:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
QString m_name;
|
|
|
|
QString m_jellyfinId;
|
2021-03-20 02:30:50 +00:00
|
|
|
QSharedPointer<DeviceIdentification> m_identification = nullptr;
|
2021-02-21 04:02:05 +00:00
|
|
|
QString m_friendlyName;
|
|
|
|
QString m_manufacturer;
|
|
|
|
QString m_manufacturerUrl;
|
|
|
|
QString m_modelName;
|
|
|
|
QString m_modelDescription;
|
|
|
|
QString m_modelNumber;
|
|
|
|
QString m_modelUrl;
|
|
|
|
QString m_serialNumber;
|
|
|
|
bool m_enableAlbumArtInDidl;
|
|
|
|
bool m_enableSingleAlbumArtLimit;
|
|
|
|
bool m_enableSingleSubtitleLimit;
|
|
|
|
QString m_supportedMediaTypes;
|
|
|
|
QString m_userId;
|
|
|
|
QString m_albumArtPn;
|
|
|
|
qint32 m_maxAlbumArtWidth;
|
|
|
|
qint32 m_maxAlbumArtHeight;
|
|
|
|
qint32 m_maxIconWidth;
|
|
|
|
qint32 m_maxIconHeight;
|
|
|
|
qint32 m_maxStreamingBitrate;
|
|
|
|
qint32 m_maxStaticBitrate;
|
|
|
|
qint32 m_musicStreamingTranscodingBitrate;
|
|
|
|
qint32 m_maxStaticMusicBitrate;
|
|
|
|
QString m_sonyAggregationFlags;
|
|
|
|
QString m_protocolInfo;
|
|
|
|
qint32 m_timelineOffsetSeconds;
|
|
|
|
bool m_requiresPlainVideoItems;
|
|
|
|
bool m_requiresPlainFolders;
|
|
|
|
bool m_enableMSMediaReceiverRegistrar;
|
|
|
|
bool m_ignoreTranscodeByteRangeRequests;
|
2021-03-20 02:30:50 +00:00
|
|
|
QList<QSharedPointer<XmlAttribute>> m_xmlRootAttributes;
|
|
|
|
QList<QSharedPointer<DirectPlayProfile>> m_directPlayProfiles;
|
|
|
|
QList<QSharedPointer<TranscodingProfile>> m_transcodingProfiles;
|
|
|
|
QList<QSharedPointer<ContainerProfile>> m_containerProfiles;
|
|
|
|
QList<QSharedPointer<CodecProfile>> m_codecProfiles;
|
|
|
|
QList<QSharedPointer<ResponseProfile>> m_responseProfiles;
|
|
|
|
QList<QSharedPointer<SubtitleProfile>> m_subtitleProfiles;
|
2021-02-21 04:02:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // NS Jellyfin
|
|
|
|
} // NS DTO
|
|
|
|
|
|
|
|
#endif // JELLYFIN_DTO_DEVICEPROFILE_H
|