2 * Copyright (C) 2017-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.
13 class CVC1BitstreamParser
16 CVC1BitstreamParser();
17 ~CVC1BitstreamParser() = default;
21 inline bool IsRecoveryPoint(const uint8_t *buf
, int buf_size
);
22 inline bool IsIFrame(const uint8_t *buf
, int buf_size
);
25 bool vc1_parse_frame(const uint8_t *buf
, const uint8_t *buf_end
, bool sequenceOnly
);
29 uint8_t m_SimpleSkipBits
;
30 uint8_t m_AdvInterlace
;