Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
39c3f27b
Commit
39c3f27b
authored
Jul 02, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: remove unused XML validator
parent
65b041af
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
39 deletions
+33
-39
modules/text_renderer/quartztext.c
modules/text_renderer/quartztext.c
+33
-39
No files found.
modules/text_renderer/quartztext.c
View file @
39c3f27b
...
@@ -794,7 +794,6 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
...
@@ -794,7 +794,6 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
{
{
int
rv
=
VLC_SUCCESS
;
int
rv
=
VLC_SUCCESS
;
stream_t
*
p_sub
=
NULL
;
stream_t
*
p_sub
=
NULL
;
xml_t
*
p_xml
=
NULL
;
xml_reader_t
*
p_xml_reader
=
NULL
;
xml_reader_t
*
p_xml_reader
=
NULL
;
VLC_UNUSED
(
p_chroma_list
);
VLC_UNUSED
(
p_chroma_list
);
...
@@ -809,9 +808,7 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
...
@@ -809,9 +808,7 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
strlen
(
p_region_in
->
psz_html
),
strlen
(
p_region_in
->
psz_html
),
true
);
true
);
if
(
p_sub
)
{
if
(
p_sub
)
{
p_xml
=
xml_Create
(
p_filter
);
p_xml_reader
=
xml_ReaderCreate
(
p_filter
,
p_sub
);
if
(
p_xml
)
{
p_xml_reader
=
xml_ReaderCreate
(
p_xml
,
p_sub
);
if
(
p_xml_reader
)
{
if
(
p_xml_reader
)
{
/* Look for Root Node */
/* Look for Root Node */
const
char
*
name
;
const
char
*
name
;
...
@@ -819,8 +816,7 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
...
@@ -819,8 +816,7 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
==
XML_READER_STARTELEM
)
{
==
XML_READER_STARTELEM
)
{
if
(
!
strcasecmp
(
"karaoke"
,
name
))
{
if
(
!
strcasecmp
(
"karaoke"
,
name
))
{
/* We're going to have to render the text a number
/* We're going to have to render the text a number
* of times to show the progress marker on the text.
* of times to show the progress marker on the text. */
*/
var_SetBool
(
p_filter
,
"text-rerender"
,
true
);
var_SetBool
(
p_filter
,
"text-rerender"
,
true
);
}
else
if
(
strcasecmp
(
"text"
,
name
))
{
}
else
if
(
strcasecmp
(
"text"
,
name
))
{
/* Only text and karaoke tags are supported */
/* Only text and karaoke tags are supported */
...
@@ -858,8 +854,6 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
...
@@ -858,8 +854,6 @@ static int RenderHtml(filter_t *p_filter, subpicture_region_t *p_region_out,
xml_ReaderDelete
(
p_xml_reader
);
xml_ReaderDelete
(
p_xml_reader
);
}
}
xml_Delete
(
p_xml
);
}
stream_Delete
(
p_sub
);
stream_Delete
(
p_sub
);
}
}
...
...
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