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
2374e7bc
Commit
2374e7bc
authored
Nov 12, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix playlist unable to terminate (Closes:#829)
parent
d6305102
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
modules/demux/playlist/asx.c
modules/demux/playlist/asx.c
+1
-1
modules/demux/playlist/b4s.c
modules/demux/playlist/b4s.c
+1
-1
modules/demux/playlist/dvb.c
modules/demux/playlist/dvb.c
+1
-1
modules/demux/playlist/gvp.c
modules/demux/playlist/gvp.c
+1
-1
modules/demux/playlist/m3u.c
modules/demux/playlist/m3u.c
+1
-1
modules/demux/playlist/pls.c
modules/demux/playlist/pls.c
+1
-1
modules/demux/playlist/podcast.c
modules/demux/playlist/podcast.c
+1
-1
modules/demux/playlist/qtl.c
modules/demux/playlist/qtl.c
+1
-1
modules/demux/playlist/sgimb.c
modules/demux/playlist/sgimb.c
+1
-1
modules/demux/playlist/shoutcast.c
modules/demux/playlist/shoutcast.c
+1
-1
modules/demux/playlist/xspf.c
modules/demux/playlist/xspf.c
+1
-1
No files found.
modules/demux/playlist/asx.c
View file @
2374e7bc
...
@@ -493,7 +493,7 @@ static int Demux( demux_t *p_demux )
...
@@ -493,7 +493,7 @@ static int Demux( demux_t *p_demux )
#endif
#endif
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/b4s.c
View file @
2374e7bc
...
@@ -290,7 +290,7 @@ static int Demux( demux_t *p_demux )
...
@@ -290,7 +290,7 @@ static int Demux( demux_t *p_demux )
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/dvb.c
View file @
2374e7bc
...
@@ -128,7 +128,7 @@ static int Demux( demux_t *p_demux )
...
@@ -128,7 +128,7 @@ static int Demux( demux_t *p_demux )
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
struct
static
struct
...
...
modules/demux/playlist/gvp.c
View file @
2374e7bc
...
@@ -228,7 +228,7 @@ static int Demux( demux_t *p_demux )
...
@@ -228,7 +228,7 @@ static int Demux( demux_t *p_demux )
p_sys
->
p_playlist
=
NULL
;
p_sys
->
p_playlist
=
NULL
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/m3u.c
View file @
2374e7bc
...
@@ -197,7 +197,7 @@ static int Demux( demux_t *p_demux )
...
@@ -197,7 +197,7 @@ static int Demux( demux_t *p_demux )
}
}
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/pls.c
View file @
2374e7bc
...
@@ -228,7 +228,7 @@ static int Demux( demux_t *p_demux )
...
@@ -228,7 +228,7 @@ static int Demux( demux_t *p_demux )
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/podcast.c
View file @
2374e7bc
...
@@ -325,7 +325,7 @@ static int Demux( demux_t *p_demux )
...
@@ -325,7 +325,7 @@ static int Demux( demux_t *p_demux )
}
}
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/qtl.c
View file @
2374e7bc
...
@@ -383,7 +383,7 @@ static int Demux( demux_t *p_demux )
...
@@ -383,7 +383,7 @@ static int Demux( demux_t *p_demux )
FREE
(
psz_src
);
FREE
(
psz_src
);
FREE
(
psz_mimetype
);
FREE
(
psz_mimetype
);
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/sgimb.c
View file @
2374e7bc
...
@@ -409,7 +409,7 @@ static int Demux ( demux_t *p_demux )
...
@@ -409,7 +409,7 @@ static int Demux ( demux_t *p_demux )
playlist_BothAddInput
(
p_playlist
,
p_child
,
p_item_in_category
,
playlist_BothAddInput
(
p_playlist
,
p_child
,
p_item_in_category
,
PLAYLIST_APPEND
,
PLAYLIST_END
);
PLAYLIST_APPEND
,
PLAYLIST_END
);
HANDLE_PLAY_AND_RELEASE
HANDLE_PLAY_AND_RELEASE
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
static
int
Control
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
modules/demux/playlist/shoutcast.c
View file @
2374e7bc
...
@@ -152,7 +152,7 @@ static int Demux( demux_t *p_demux )
...
@@ -152,7 +152,7 @@ static int Demux( demux_t *p_demux )
HANDLE_PLAY_AND_RELEASE
;
HANDLE_PLAY_AND_RELEASE
;
p_sys
->
p_playlist
=
NULL
;
p_sys
->
p_playlist
=
NULL
;
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
#define GET_VALUE( a ) \
#define GET_VALUE( a ) \
...
...
modules/demux/playlist/xspf.c
View file @
2374e7bc
...
@@ -124,7 +124,7 @@ int Demux( demux_t *p_demux )
...
@@ -124,7 +124,7 @@ int Demux( demux_t *p_demux )
xml_ReaderDelete
(
p_xml
,
p_xml_reader
);
xml_ReaderDelete
(
p_xml
,
p_xml_reader
);
if
(
p_xml
)
if
(
p_xml
)
xml_Delete
(
p_xml
);
xml_Delete
(
p_xml
);
return
VLC_SUCCESS
;
return
-
1
;
/* Needed for correct operation of go back */
}
}
/** \brief dummy function for demux callback interface */
/** \brief dummy function for demux callback interface */
...
...
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