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
549a987a
Commit
549a987a
authored
Jul 02, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hds: remove unused XML validator
parent
3b1b0b72
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
modules/stream_filter/hds/hds.c
modules/stream_filter/hds/hds.c
+1
-10
No files found.
modules/stream_filter/hds/hds.c
View file @
549a987a
...
...
@@ -176,7 +176,6 @@ typedef struct _manifest {
bootstrap_info
bootstraps
[
MAX_BOOTSTRAP_INFO
];
media_info
medias
[
MAX_MEDIA_ELEMENTS
];
xml_reader_t
*
vlc_reader
;
xml_t
*
vlc_xml
;
}
manifest_t
;
static
unsigned
char
flv_header_bytes
[]
=
{
...
...
@@ -1186,14 +1185,8 @@ static int init_Manifest( stream_t *s, manifest_t *m )
{
memset
(
m
,
0
,
sizeof
(
*
m
));
stream_t
*
st
=
s
->
p_source
;
m
->
vlc_xml
=
xml_Create
(
st
);
if
(
!
m
->
vlc_xml
)
{
msg_Err
(
s
,
"Failed to open XML parser"
);
return
VLC_EGENERIC
;
}
m
->
vlc_reader
=
xml_ReaderCreate
(
m
->
vlc_xml
,
st
);
m
->
vlc_reader
=
xml_ReaderCreate
(
st
,
st
);
if
(
!
m
->
vlc_reader
)
{
msg_Err
(
s
,
"Failed to open source for parsing"
);
...
...
@@ -1226,8 +1219,6 @@ static void cleanup_Manifest( manifest_t *m )
if
(
m
->
vlc_reader
)
xml_ReaderDelete
(
m
->
vlc_reader
);
if
(
m
->
vlc_xml
)
xml_Delete
(
m
->
vlc_xml
);
}
static
void
cleanup_threading
(
hds_stream_t
*
stream
)
...
...
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