From 4acf7a34c202293884739b40af699943d7e8e9d9 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 29 Jan 2019 15:55:17 +0100 Subject: Add partial FIG2 label support Add support for Ensemble label, programme services and components, although the implementation for the component label is not properly tested. (data services still to be done) Neither short labels nor UCS-2 are not yet implemented. Also, support for draftETSI TS 103 176 which redefines the meaning of Rfa is still pending. --- lib/charset/charset.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/charset/charset.cpp') diff --git a/lib/charset/charset.cpp b/lib/charset/charset.cpp index 1abc097..f5eb216 100644 --- a/lib/charset/charset.cpp +++ b/lib/charset/charset.cpp @@ -73,7 +73,7 @@ CharsetConverter::CharsetConverter() } } -std::string CharsetConverter::convert(std::string line_utf8, bool up_to_first_error) +std::string CharsetConverter::utf8_to_ebu(std::string line_utf8, bool up_to_first_error) { string::iterator end_it; @@ -107,7 +107,7 @@ std::string CharsetConverter::convert(std::string line_utf8, bool up_to_first_er return encoded_line; } -std::string CharsetConverter::convert_ebu_to_utf8(const std::string& str) +std::string CharsetConverter::ebu_to_utf8(const std::string& str) { string utf8_str; for (const uint8_t c : str) { -- cgit v1.2.3