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
65b041af
Commit
65b041af
authored
Jul 02, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smooth: remove unused XML validator
parent
549a987a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
11 deletions
+1
-11
modules/stream_filter/smooth/smooth.c
modules/stream_filter/smooth/smooth.c
+1
-11
No files found.
modules/stream_filter/smooth/smooth.c
View file @
65b041af
...
...
@@ -123,25 +123,16 @@ static void cleanup_attributes(custom_attrs_t **cp)
static
int
parse_Manifest
(
stream_t
*
s
)
{
stream_sys_t
*
p_sys
=
s
->
p_sys
;
xml_t
*
vlc_xml
=
NULL
;
xml_reader_t
*
vlc_reader
=
NULL
;
int
type
=
UNKNOWN_ES
;
const
char
*
name
,
*
value
;
stream_t
*
st
=
s
->
p_source
;
msg_Dbg
(
s
,
"Manifest parsing
\n
"
);
vlc_xml
=
xml_Create
(
st
);
if
(
!
vlc_xml
)
{
msg_Err
(
s
,
"Failed to open XML parser"
);
return
VLC_EGENERIC
;
}
vlc_reader
=
xml_ReaderCreate
(
vlc_xml
,
st
);
vlc_reader
=
xml_ReaderCreate
(
st
,
st
);
if
(
!
vlc_reader
)
{
msg_Err
(
s
,
"Failed to open source for parsing"
);
xml_Delete
(
vlc_xml
);
return
VLC_EGENERIC
;
}
...
...
@@ -432,7 +423,6 @@ cleanup:
cleanup_attributes
(
&
cp
);
sms_Free
(
sms
);
xml_ReaderDelete
(
vlc_reader
);
xml_Delete
(
vlc_xml
);
return
ret
;
}
...
...
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