[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / cores / VideoPlayer / Interface / DemuxPacket.h
bloba8ffb9807b3e5a67831dba3c87209b4e9657df57
1 /*
2 * Copyright (C) 2012-2018 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.
7 */
9 #pragma once
11 #include "TimingConstants.h"
12 #include "addons/kodi-dev-kit/include/kodi/c-api/addon-instance/inputstream/demux_packet.h"
14 #define DMX_SPECIALID_STREAMINFO DEMUX_SPECIALID_STREAMINFO
15 #define DMX_SPECIALID_STREAMCHANGE DEMUX_SPECIALID_STREAMCHANGE
17 #ifdef __cplusplus
18 extern "C"
20 #endif /* __cplusplus */
22 struct DemuxPacket : DEMUX_PACKET
24 DemuxPacket()
26 pData = nullptr;
27 iSize = 0;
28 iStreamId = -1;
29 demuxerId = -1;
30 iGroupId = -1;
32 pSideData = nullptr;
33 iSideDataElems = 0;
35 pts = DVD_NOPTS_VALUE;
36 dts = DVD_NOPTS_VALUE;
37 duration = 0;
38 dispTime = 0;
39 recoveryPoint = false;
41 cryptoInfo = nullptr;
44 //! @brief PTS offset correction applied to the PTS and DTS.
45 double m_ptsOffsetCorrection{0};
48 #ifdef __cplusplus
49 } /* extern "C" */
50 #endif /* __cplusplus */