Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
930a9e57
Commit
930a9e57
authored
Aug 28, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dvb: some cleanup.
parent
cd1bd86e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/demux/playlist/dvb.c
modules/demux/playlist/dvb.c
+4
-5
No files found.
modules/demux/playlist/dvb.c
View file @
930a9e57
/*****************************************************************************
* dvb.c : DVB channel list import (szap/tzap/czap compatible channel lists)
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
* Copyright (C) 2005
-20009
the VideoLAN team
* $Id$
*
* Authors: Gildas Bazin <gbazin@videolan.org>
...
...
@@ -30,7 +30,6 @@
#include <vlc_common.h>
#include <vlc_demux.h>
#include <vlc_interface.h>
#include <vlc_charset.h>
#include "playlist.h"
...
...
@@ -211,8 +210,8 @@ static int ParseLine( char *psz_line, char **ppsz_name,
while
(
psz_parse
)
{
const
char
*
psz_option
=
NULL
;
char
*
psz_end
=
strchr
(
psz_parse
,
':'
);
if
(
psz_
end
)
{
*
psz_end
=
0
;
psz
_end
++
;
}
char
*
psz_
option_
end
=
strchr
(
psz_parse
,
':'
);
if
(
psz_
option_end
)
{
*
psz_option_end
=
0
;
psz_option
_end
++
;
}
if
(
i_count
==
0
)
{
...
...
@@ -278,7 +277,7 @@ static int ParseLine( char *psz_line, char **ppsz_name,
psz_dup
);
}
psz_parse
=
psz_end
;
psz_parse
=
psz_
option_
end
;
i_count
++
;
}
...
...
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