Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5a75fb87
Commit
5a75fb87
authored
Jul 29, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_demux: remove unneeded peek.
parent
59132510
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
6 deletions
+1
-6
modules/demux/playlist/ram.c
modules/demux/playlist/ram.c
+1
-2
modules/demux/playlist/wpl.c
modules/demux/playlist/wpl.c
+0
-2
modules/demux/playlist/zpl.c
modules/demux/playlist/zpl.c
+0
-2
No files found.
modules/demux/playlist/ram.c
View file @
5a75fb87
...
...
@@ -77,8 +77,7 @@ static void ParseClipInfo( const char * psz_clipinfo, char **ppsz_artist, char *
int
Import_RAM
(
vlc_object_t
*
p_this
)
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
const
uint8_t
*
p_peek
;
CHECK_PEEK
(
p_peek
,
8
);
if
(
!
demux_IsPathExtension
(
p_demux
,
".ram"
)
||
demux_IsPathExtension
(
p_demux
,
".rm"
)
)
return
VLC_EGENERIC
;
...
...
modules/demux/playlist/wpl.c
View file @
5a75fb87
...
...
@@ -52,8 +52,6 @@ static char* ParseUriValue(char* psz_string);
int
Import_WPL
(
vlc_object_t
*
p_this
)
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
const
uint8_t
*
p_peek
;
CHECK_PEEK
(
p_peek
,
8
);
if
(
!
(
demux_IsPathExtension
(
p_demux
,
".wpl"
)
||
demux_IsForced
(
p_demux
,
"wpl"
)))
return
VLC_EGENERIC
;
...
...
modules/demux/playlist/zpl.c
View file @
5a75fb87
...
...
@@ -53,8 +53,6 @@ static char* ParseTabValue(char* psz_string);
int
Import_ZPL
(
vlc_object_t
*
p_this
)
{
demux_t
*
p_demux
=
(
demux_t
*
)
p_this
;
const
uint8_t
*
p_peek
;
CHECK_PEEK
(
p_peek
,
8
);
if
(
!
(
demux_IsPathExtension
(
p_demux
,
".zpl"
)
||
demux_IsForced
(
p_demux
,
"zpl"
)))
return
VLC_EGENERIC
;
...
...
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