Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9b749a07
Commit
9b749a07
authored
Sep 05, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #includes and remove useless variable
parent
3b043bf1
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1 addition
and
14 deletions
+1
-14
modules/demux/playlist/asx.c
modules/demux/playlist/asx.c
+1
-3
modules/demux/playlist/b4s.c
modules/demux/playlist/b4s.c
+0
-1
modules/demux/playlist/gvp.c
modules/demux/playlist/gvp.c
+0
-1
modules/demux/playlist/ifo.c
modules/demux/playlist/ifo.c
+0
-3
modules/demux/playlist/m3u.c
modules/demux/playlist/m3u.c
+0
-1
modules/demux/playlist/podcast.c
modules/demux/playlist/podcast.c
+0
-2
modules/demux/playlist/qtl.c
modules/demux/playlist/qtl.c
+0
-1
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+0
-2
No files found.
modules/demux/playlist/asx.c
View file @
9b749a07
...
...
@@ -27,12 +27,10 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <ctype.h>
/* isspace() */
#include <vlc/vlc.h>
#include <vlc_demux.h>
#include <
errno.h>
/* ENOMEM */
#include <
ctype.h>
#include <vlc_charset.h>
#include "playlist.h"
#include "vlc_meta.h"
...
...
modules/demux/playlist/b4s.c
View file @
9b749a07
...
...
@@ -24,7 +24,6 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <ctype.h>
/* isspace() */
#include <vlc/vlc.h>
#include <vlc_demux.h>
...
...
modules/demux/playlist/gvp.c
View file @
9b749a07
...
...
@@ -51,7 +51,6 @@ description:The now infamous Apple Macintosh commercial aired during the 1984 Su
#include <vlc/vlc.h>
#include <vlc_demux.h>
#include <errno.h>
/* ENOMEM */
#include "playlist.h"
#define MAX_LINE 1024
...
...
modules/demux/playlist/ifo.c
View file @
9b749a07
...
...
@@ -27,7 +27,6 @@
#include <vlc/vlc.h>
#include <vlc_demux.h>
#include <errno.h>
/* ENOMEM */
#include "playlist.h"
/*****************************************************************************
...
...
@@ -81,8 +80,6 @@ void E_(Close_IFO)( vlc_object_t *p_this )
static
int
Demux
(
demux_t
*
p_demux
)
{
char
*
psz_url
=
NULL
;
char
*
psz_file
=
p_demux
->
psz_path
+
strlen
(
p_demux
->
psz_path
)
-
strlen
(
"VIDEO_TS.IFO"
);
size_t
len
=
0
;
input_item_t
*
p_input
;
...
...
modules/demux/playlist/m3u.c
View file @
9b749a07
...
...
@@ -30,7 +30,6 @@
#include <vlc_demux.h>
#include <vlc_charset.h>
#include <errno.h>
/* ENOMEM */
#include "playlist.h"
struct
demux_sys_t
...
...
modules/demux/playlist/podcast.c
View file @
9b749a07
...
...
@@ -24,8 +24,6 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <ctype.h>
/* isspace() */
#include <vlc/vlc.h>
#include <vlc_demux.h>
...
...
modules/demux/playlist/qtl.c
View file @
9b749a07
...
...
@@ -47,7 +47,6 @@ volume - 0 (mute) - 100 (max)
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <ctype.h>
/* isspace() */
#include <vlc/vlc.h>
#include <vlc_demux.h>
...
...
modules/demux/playlist/shoutcast.c
View file @
9b749a07
...
...
@@ -25,12 +25,10 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#include <ctype.h>
/* isspace() */
#include <vlc/vlc.h>
#include <vlc_demux.h>
#include <errno.h>
/* ENOMEM */
#include "playlist.h"
#include "vlc_xml.h"
...
...
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