Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
67a62cc7
Commit
67a62cc7
authored
Oct 26, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DVB: resync with TS demux
parent
b298ce46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
48 deletions
+50
-48
modules/access/dvb/en50221.c
modules/access/dvb/en50221.c
+50
-48
No files found.
modules/access/dvb/en50221.c
View file @
67a62cc7
...
@@ -2338,107 +2338,109 @@ void en50221_End( access_t * p_access )
...
@@ -2338,107 +2338,109 @@ void en50221_End( access_t * p_access )
* program. */
* program. */
}
}
static
inline
void
*
FixUTF8
(
char
*
p
)
/* FIXME same than EITConvertToUTF8 from TS demux */
{
EnsureUTF8
(
p
);
return
p
;
}
char
*
dvbsi_to_utf8
(
const
char
*
psz_instring
,
size_t
i_length
)
char
*
dvbsi_to_utf8
(
const
char
*
psz_instring
,
size_t
i_length
)
{
{
const
char
*
psz_encoding
,
*
psz_stringstart
;
const
char
*
psz_encoding
;
char
*
psz_outstring
,
*
psz_tmp
;
char
psz_encbuf
[
sizeof
(
"ISO_8859-123"
)];
char
psz_encbuf
[
12
];
size_t
offset
=
1
;
size_t
i_in
,
i_out
;
vlc_iconv_t
iconv_handle
;
if
(
i_length
<
1
)
return
NULL
;
if
(
i_length
<
1
)
return
NULL
;
if
(
psz_instring
[
0
]
<
0
||
psz_instring
[
0
]
>=
0x20
)
if
(
psz_instring
[
0
]
>=
0x20
)
{
{
psz_stringstart
=
psz_instring
;
psz_encoding
=
"ISO_6937"
;
psz_encoding
=
"ISO_8859-1"
;
/* should be ISO6937 according to spec, but this seems to be the one used */
offset
=
0
;
}
else
switch
(
psz_instring
[
0
]
)
}
else
switch
(
psz_instring
[
0
]
)
{
{
case
0x01
:
case
0x01
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-5"
;
psz_encoding
=
"ISO_8859-5"
;
break
;
break
;
case
0x02
:
case
0x02
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-6"
;
psz_encoding
=
"ISO_8859-6"
;
break
;
break
;
case
0x03
:
case
0x03
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-7"
;
psz_encoding
=
"ISO_8859-7"
;
break
;
break
;
case
0x04
:
case
0x04
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-8"
;
psz_encoding
=
"ISO_8859-8"
;
break
;
break
;
case
0x05
:
case
0x05
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-9"
;
psz_encoding
=
"ISO_8859-9"
;
break
;
break
;
case
0x06
:
case
0x06
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-10"
;
psz_encoding
=
"ISO_8859-10"
;
break
;
break
;
case
0x07
:
case
0x07
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-11"
;
psz_encoding
=
"ISO_8859-11"
;
break
;
break
;
case
0x08
:
case
0x08
:
psz_stringstart
=
&
psz_instring
[
1
];
/*possibly reserved?*/
psz_encoding
=
"ISO_8859-12"
;
psz_encoding
=
"ISO_8859-12"
;
break
;
break
;
case
0x09
:
case
0x09
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-13"
;
psz_encoding
=
"ISO_8859-13"
;
break
;
break
;
case
0x0a
:
case
0x0a
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-14"
;
psz_encoding
=
"ISO_8859-14"
;
break
;
break
;
case
0x0b
:
case
0x0b
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"ISO_8859-15"
;
psz_encoding
=
"ISO_8859-15"
;
break
;
break
;
case
0x10
:
case
0x10
:
if
(
i_length
<
3
||
psz_instring
[
1
]
!=
'\0'
||
psz_instring
[
2
]
>
0x0f
#warning Is Latin-10 (psz_instring[2] == 16) really illegal?
||
psz_instring
[
2
]
==
0
)
if
(
i_length
<
3
||
psz_instring
[
1
]
!=
0x00
||
psz_instring
[
2
]
>
15
return
FixUTF8
(
strndup
(
psz_instring
,
i_length
));
||
psz_instring
[
2
]
==
0
)
sprintf
(
psz_encbuf
,
"ISO_8859-%d"
,
psz_instring
[
2
]
);
{
psz_stringstart
=
&
psz_instring
[
3
];
psz_encoding
=
"UTF-8"
;
psz_encoding
=
psz_encbuf
;
offset
=
0
;
}
else
{
sprintf
(
psz_encbuf
,
"ISO_8859-%u"
,
psz_instring
[
2
]
);
psz_encoding
=
psz_encbuf
;
offset
=
3
;
}
break
;
break
;
case
0x11
:
case
0x11
:
psz_stringstart
=
&
psz_instring
[
1
];
#warning Is there a BOM or do we use a fixed endianess?
psz_encoding
=
"UTF-16"
;
psz_encoding
=
"UTF-16"
;
break
;
break
;
case
0x12
:
case
0x12
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"KSC5601-1987"
;
psz_encoding
=
"KSC5601-1987"
;
break
;
break
;
case
0x13
:
case
0x13
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"GB2312"
;
/* GB-2312-1980 */
psz_encoding
=
"GB2312"
;
/*GB-2312-1980 */
break
;
break
;
case
0x14
:
case
0x14
:
psz_stringstart
=
&
psz_instring
[
1
];
psz_encoding
=
"BIG-5"
;
psz_encoding
=
"BIG-5"
;
break
;
break
;
case
0x15
:
case
0x15
:
return
FixUTF8
(
strndup
(
&
psz_instring
[
1
],
i_length
-
1
))
;
psz_encoding
=
"UTF-8"
;
break
;
break
;
default:
default:
/* invalid */
/* invalid */
return
FixUTF8
(
strndup
(
psz_instring
,
i_length
));
psz_encoding
=
"UTF-8"
;
}
offset
=
0
;
iconv_handle
=
vlc_iconv_open
(
"UTF-8"
,
psz_encoding
);
}
i_in
=
i_length
-
(
psz_stringstart
-
psz_instring
);
i_out
=
i_in
*
6
;
psz_instring
+=
offset
;
psz_outstring
=
psz_tmp
=
(
char
*
)
xmalloc
(
i_out
+
1
);
i_length
-=
offset
;
vlc_iconv
(
iconv_handle
,
&
psz_stringstart
,
&
i_in
,
&
psz_tmp
,
&
i_out
);
vlc_iconv_close
(
iconv_handle
);
char
*
psz
=
FromCharset
(
psz_encoding
,
psz_instring
,
i_length
);
*
psz_tmp
=
'\0'
;
if
(
psz
==
NULL
)
return
psz_outstring
;
{
/* Invalid character set (e.g. ISO_8859-12) */
psz
=
strndup
(
(
const
char
*
)
psz_instring
,
i_length
);
if
(
unlikely
(
psz
==
NULL
)
)
return
NULL
;
EnsureUTF8
(
psz
);
}
/* Convert EIT-coded CR/LFs */
for
(
char
*
p
=
strstr
(
psz
,
"
\xc2\x8a
"
);
p
!=
NULL
;
p
=
strstr
(
p
,
"
\xc2\x8a
"
))
{
p
[
0
]
=
' '
;
p
[
1
]
=
'\n'
;
}
return
psz
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment