Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
984fa854
Commit
984fa854
authored
5 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
playlist: m3u: use cctype
parent
9fdad603
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/playlist/m3u.c
+9
-8
9 additions, 8 deletions
modules/demux/playlist/m3u.c
with
9 additions
and
8 deletions
modules/demux/playlist/m3u.c
+
9
−
8
View file @
984fa854
...
...
@@ -36,6 +36,8 @@
#include
"playlist.h"
#include
<ctype.h>
/*****************************************************************************
* Local prototypes
*****************************************************************************/
...
...
@@ -230,17 +232,16 @@ static int ReadDir( stream_t *p_demux, input_item_node_t *p_subitems )
char
*
psz_parse
=
psz_line
;
/* Skip leading tabs and spaces */
while
(
*
psz_parse
==
' '
||
*
psz_parse
==
'\t'
||
*
psz_parse
==
'\n'
||
*
psz_parse
==
'\r'
)
psz_parse
++
;
while
(
isspace
(
*
psz_parse
)
)
psz_parse
++
;
if
(
*
psz_parse
==
'#'
)
{
/* Parse extra info */
/* Skip leading tabs and spaces */
while
(
*
psz_parse
==
' '
||
*
psz_parse
==
'\t'
||
*
psz_parse
==
'\n'
||
*
psz_parse
==
'\r'
||
*
psz_parse
==
'#'
)
psz_parse
++
;
while
(
isspace
(
*
psz_parse
)
||
*
psz_parse
==
'#'
)
psz_parse
++
;
if
(
!*
psz_parse
)
goto
error
;
...
...
@@ -353,9 +354,9 @@ static void parseEXTINF(char *psz_string, char **ppsz_artist,
end
=
psz_string
+
strlen
(
psz_string
);
/*
ignore
whitespaces */
for
(;
psz_string
<
end
&&
(
*
psz_string
==
'\t'
||
*
psz_string
==
' '
)
;
psz_string
++
)
;
/*
strip leading
whitespaces */
while
(
psz_string
<
end
&&
isspace
(
*
psz_string
)
)
psz_string
++
;
/* duration: read to next comma */
psz_item
=
psz_string
;
...
...
This diff is collapsed.
Click to expand it.
François Cartegnie
@fcartegnie
mentioned in commit
d2e15342
·
5 years ago
mentioned in commit
d2e15342
mentioned in commit d2e153423f739eed09c28781eba465f41fd2b087
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment