Added more ISO639 support (2-letter codes and conversions), improved audio/video/subtitle selection through HTTP connectors

This commit is contained in:
Thulinma 2017-11-17 11:26:03 +01:00
parent e09cd5308e
commit 307d14f901
7 changed files with 1332 additions and 607 deletions

File diff suppressed because it is too large Load diff

View file

@ -5,6 +5,8 @@ namespace Encodings {
class ISO639{
public:
static std::string decode(const std::string & lang);
static std::string twoToThree(const std::string & lang);
static std::string encode(const std::string & lang);
};