kodi
AEELDParser.h
1 /*
2  * Copyright (C) 2012-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include <cstring>
12 #include <stdint.h>
13 
14 class CAEDeviceInfo;
15 
16 class CAEELDParser {
17 public:
18  static void Parse(const uint8_t *data, size_t length, CAEDeviceInfo& info);
19 };
20 
This classt provides the details of what the audio output hardware is capable of. ...
Definition: AEDeviceInfo.h:31
static void Parse(const uint8_t *data, size_t length, CAEDeviceInfo &info)
Definition: AEELDParser.cpp:75
Definition: AEELDParser.h:16