[vlc-commits] codec: zvbi: fix default high bits for Hebrew (#23686)
Francois Cartegnie
git at videolan.org
Thu Jan 30 14:48:58 CET 2020
vlc/vlc-3.0 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Jan 30 14:22:39 2020 +0100| [22d57eb77d96d1f1e79b9296bc6303638ddc330b] | committer: Francois Cartegnie
codec: zvbi: fix default high bits for Hebrew (#23686)
(cherry picked from commit 143d4aad130fd3f33400b8abf9dbcf1668ba81bf)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=22d57eb77d96d1f1e79b9296bc6303638ddc330b
---
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 ffef4dcc77..e90443a56a 100644
--- a/modules/codec/zvbi.c
+++ b/modules/codec/zvbi.c
@@ -118,6 +118,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
@@ -126,7 +127,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