2 * Copyright (C) 2023 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
13 enum class VideoAssetTypeOwner
21 enum class VideoAssetType
: int
34 static constexpr int VIDEO_VERSION_ID_BEGIN
= 40400;
35 static constexpr int VIDEO_VERSION_ID_END
= 40800;
36 static constexpr int VIDEO_VERSION_ID_DEFAULT
= VIDEO_VERSION_ID_BEGIN
;
37 static constexpr int VIDEO_VERSION_ID_ALL
= 0;
38 static const std::string VIDEODB_PATH_VERSION_ID_ALL
{"videodb://movies/videoversions/0"};
43 int m_assetTypeId
{-1};
44 std::string m_assetTypeName
;
46 MediaType m_mediaType
{MediaTypeNone
};
47 VideoAssetType m_assetType
{VideoAssetType::UNKNOWN
};