remove unused and some clang compil fixes

Origin commit data
------------------
Commit: 374a172aef
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2016-04-17 (Sun, 17 Apr 2016)
This commit is contained in:
Jacek Jendrzej
2016-04-17 13:46:16 +02:00
parent a53c0ee6bf
commit 2f5086ec0e
21 changed files with 35 additions and 45 deletions

View File

@@ -2141,7 +2141,7 @@ std::string convertDVBUTF8(const char *data, int len, int table, int tsidonid)
res[t++]=char(code);
else if((table == 5) && (code == 0x8A))
res[t++]= 0x20;
else if ((code == 0x8A))
else if (code == 0x8A)
res[t++]= '\n'; // 0x8a is vertical tab. Just use newline for now.
else if((code >= 0x80) && (code <= 0x9F))
continue;