kodi
DVDCodecs.h
1 /*
2  * Copyright (C) 2005-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 <string>
12 #include <vector>
13 
14 // special options that can be passed to a codec
16 {
17 public:
18  CDVDCodecOption(const std::string& name, const std::string& value) : m_name(name), m_value(value) {}
19  std::string m_name;
20  std::string m_value;
21 };
22 
24 {
25 public:
26  std::vector<CDVDCodecOption> m_keys;
27 };
Definition: DVDCodecs.h:23
Definition: DVDCodecs.h:15