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
005d5696
Commit
005d5696
authored
Jun 02, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Decomp filter: skip .vlc & .wsz files (skins)"
This reverts commit
3acea644
.
parent
8328b699
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
modules/stream_filter/decomp.c
modules/stream_filter/decomp.c
+0
-12
No files found.
modules/stream_filter/decomp.c
View file @
005d5696
...
...
@@ -267,18 +267,6 @@ static int Control (stream_t *stream, int query, va_list args)
*/
static
int
Open
(
stream_t
*
stream
,
const
char
*
path
)
{
/* Verify file extension: discard .vlt files (skins) */
char
*
psz_ext
=
strrchr
(
stream
->
psz_path
,
'.'
);
if
(
psz_ext
)
{
if
(
!
strncasecmp
(
psz_ext
,
".vlt"
,
4
)
||
!
strncasecmp
(
psz_ext
,
".wsz"
,
4
))
{
msg_Dbg
(
stream
,
"skipping skins package (*.vlt, *.wsz)"
);
return
VLC_EGENERIC
;
}
}
stream_sys_t
*
p_sys
=
stream
->
p_sys
=
malloc
(
sizeof
(
*
p_sys
));
if
(
p_sys
==
NULL
)
return
VLC_ENOMEM
;
...
...
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