Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
4d9b20e3
Commit
4d9b20e3
authored
Nov 06, 2004
by
zorglub
Browse files
Honor don't skip flag for items too
parent
5c8ad6bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/misc/sap.c
View file @
4d9b20e3
...
...
@@ -600,8 +600,6 @@ static int ParseSAP( intf_thread_t *p_intf, uint8_t *p_buffer, int i_read )
psz_sdp
++
;
}
fprintf
(
stderr
,
"
\n\n
%s
\n\n
"
,
psz_sdp
);
/* Parse SDP info */
p_sdp
=
ParseSDP
(
VLC_OBJECT
(
p_intf
),
psz_sdp
);
...
...
src/playlist/playlist.c
View file @
4d9b20e3
...
...
@@ -674,6 +674,13 @@ static playlist_item_t * NextItem( playlist_t *p_playlist )
return
NULL
;
}
if
(
!
p_playlist
->
request
.
b_request
&&
!
(
p_playlist
->
status
.
p_item
->
i_flags
&
PLAYLIST_SKIP_FLAG
)
)
{
msg_Dbg
(
p_playlist
,
"no-skip mode, stopping"
)
;
return
NULL
;
}
/* TODO: improve this (only use current node) */
/* TODO: use the "shuffled view" internally ? */
/* Random case. This is an exception: if request, but request is skip +- 1
...
...
Write
Preview
Supports
Markdown
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