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_PLAYBACKINFODTO_H
|
|
|
|
#define JELLYFIN_DTO_PLAYBACKINFODTO_H
|
|
|
|
|
|
|
|
#include <QJsonObject>
|
2021-03-20 02:30:50 +00:00
|
|
|
#include <QJsonValue>
|
|
|
|
#include <QSharedPointer>
|
2021-02-21 04:02:05 +00:00
|
|
|
#include <QString>
|
2021-03-20 02:30:50 +00:00
|
|
|
#include <QUuid>
|
|
|
|
#include <optional>
|
|
|
|
|
|
|
|
#include "JellyfinQt/DTO/deviceprofile.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 PlaybackInfoDto {
|
2021-03-24 19:04:03 +00:00
|
|
|
public:PlaybackInfoDto();PlaybackInfoDto(const PlaybackInfoDto &other);
|
|
|
|
|
2021-03-20 02:30:50 +00:00
|
|
|
static PlaybackInfoDto fromJson(QJsonObject source);
|
|
|
|
void setFromJson(QJsonObject source);
|
|
|
|
QJsonObject toJson();
|
|
|
|
|
|
|
|
// Properties
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the playback userId.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QUuid userId() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the playback userId.
|
|
|
|
*/
|
|
|
|
void setUserId(QUuid newUserId);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the max streaming bitrate.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxStreamingBitrate() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the max streaming bitrate.
|
|
|
|
*/
|
|
|
|
void setMaxStreamingBitrate(qint32 newMaxStreamingBitrate);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the start time in ticks.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint64 startTimeTicks() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the start time in ticks.
|
|
|
|
*/
|
|
|
|
void setStartTimeTicks(qint64 newStartTimeTicks);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the audio stream index.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 audioStreamIndex() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the audio stream index.
|
|
|
|
*/
|
|
|
|
void setAudioStreamIndex(qint32 newAudioStreamIndex);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the subtitle stream index.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 subtitleStreamIndex() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the subtitle stream index.
|
|
|
|
*/
|
|
|
|
void setSubtitleStreamIndex(qint32 newSubtitleStreamIndex);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the max audio channels.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
qint32 maxAudioChannels() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the max audio channels.
|
|
|
|
*/
|
|
|
|
void setMaxAudioChannels(qint32 newMaxAudioChannels);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the media source id.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString mediaSourceId() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the media source id.
|
|
|
|
*/
|
|
|
|
void setMediaSourceId(QString newMediaSourceId);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets the live stream id.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
QString liveStreamId() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets the live stream id.
|
|
|
|
*/
|
|
|
|
void setLiveStreamId(QString newLiveStreamId);
|
|
|
|
|
|
|
|
QSharedPointer<DeviceProfile> deviceProfile() const;
|
|
|
|
|
|
|
|
void setDeviceProfile(QSharedPointer<DeviceProfile> newDeviceProfile);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable direct play.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableDirectPlay() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable direct play.
|
|
|
|
*/
|
|
|
|
void setEnableDirectPlay(bool newEnableDirectPlay);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable direct stream.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableDirectStream() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable direct stream.
|
|
|
|
*/
|
|
|
|
void setEnableDirectStream(bool newEnableDirectStream);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable transcoding.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool enableTranscoding() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable transcoding.
|
|
|
|
*/
|
|
|
|
void setEnableTranscoding(bool newEnableTranscoding);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable video stream copy.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool allowVideoStreamCopy() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to enable video stream copy.
|
|
|
|
*/
|
|
|
|
void setAllowVideoStreamCopy(bool newAllowVideoStreamCopy);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to allow audio stream copy.
|
|
|
|
*/
|
2021-03-20 02:30:50 +00:00
|
|
|
bool allowAudioStreamCopy() const;
|
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to allow audio stream copy.
|
|
|
|
*/
|
|
|
|
void setAllowAudioStreamCopy(bool newAllowAudioStreamCopy);
|
2021-02-21 04:02:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to auto open the live stream.
|
|
|
|
*/
|
|
|
|
bool autoOpenLiveStream() const;
|
2021-03-20 02:30:50 +00:00
|
|
|
/**
|
|
|
|
* @brief Gets or sets a value indicating whether to auto open the live stream.
|
|
|
|
*/
|
2021-02-21 04:02:05 +00:00
|
|
|
void setAutoOpenLiveStream(bool newAutoOpenLiveStream);
|
2021-03-20 02:30:50 +00:00
|
|
|
|
2021-02-21 04:02:05 +00:00
|
|
|
protected:
|
2021-03-20 02:30:50 +00:00
|
|
|
QUuid m_userId;
|
2021-02-21 04:02:05 +00:00
|
|
|
qint32 m_maxStreamingBitrate;
|
|
|
|
qint64 m_startTimeTicks;
|
|
|
|
qint32 m_audioStreamIndex;
|
|
|
|
qint32 m_subtitleStreamIndex;
|
|
|
|
qint32 m_maxAudioChannels;
|
|
|
|
QString m_mediaSourceId;
|
|
|
|
QString m_liveStreamId;
|
2021-03-20 02:30:50 +00:00
|
|
|
QSharedPointer<DeviceProfile> m_deviceProfile = nullptr;
|
2021-02-21 04:02:05 +00:00
|
|
|
bool m_enableDirectPlay;
|
|
|
|
bool m_enableDirectStream;
|
|
|
|
bool m_enableTranscoding;
|
|
|
|
bool m_allowVideoStreamCopy;
|
|
|
|
bool m_allowAudioStreamCopy;
|
|
|
|
bool m_autoOpenLiveStream;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // NS Jellyfin
|
|
|
|
} // NS DTO
|
|
|
|
|
|
|
|
#endif // JELLYFIN_DTO_PLAYBACKINFODTO_H
|