[vlc-commits] codec: zvbi: fix default high bits for Hebrew (#23686)
Francois Cartegnie
git at videolan.org
Thu Jan 30 14:45:20 CET 2020
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Jan 30 14:22:39 2020 +0100| [143d4aad130fd3f33400b8abf9dbcf1668ba81bf] | committer: Francois Cartegnie
codec: zvbi: fix default high bits for Hebrew (#23686)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=143d4aad130fd3f33400b8abf9dbcf1668ba81bf
---
modules/codec/zvbi.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/modules/codec/zvbi.c b/modules/codec/zvbi.c
index cc28bb5194..2670df952c 100644
--- a/modules/codec/zvbi.c
+++ b/modules/codec/zvbi.c
@@ -117,6 +117,7 @@ vlc_module_end ()
// #define ZVBI_DEBUG
//Guessing table for missing "default region triplet"
+/* Triplet 1 values from Table 32 */
static const int pi_default_triplet[] = {
0, 0, 0, 0, // slo slk cze ces
8, // pol
@@ -125,7 +126,7 @@ static const int pi_default_triplet[] = {
32,32,32,32,32, //est lit rus bul ukr
48,48, //gre ell
64, //ara
- 88, //heb
+ 80, //heb
16 }; //default
static const char *const ppsz_default_triplet[] = {
"slo", "slk", "cze", "ces",
More information about the vlc-commits
mailing list