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.
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
20 #endif /* __cplusplus */
22 struct DemuxPacket
: DEMUX_PACKET
35 pts
= DVD_NOPTS_VALUE
;
36 dts
= DVD_NOPTS_VALUE
;
39 recoveryPoint
= false;
44 //! @brief PTS offset correction applied to the PTS and DTS.
45 double m_ptsOffsetCorrection
{0};
50 #endif /* __cplusplus */