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
Steve Lhomme
VLC
Commits
9924f657
Commit
9924f657
authored
Jun 13, 2007
by
damienf
Browse files
asx.c: fixed a small bug in skip ad feature
parent
8c432e88
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/playlist/asx.c
View file @
9924f657
...
...
@@ -567,8 +567,7 @@ static int Demux( demux_t *p_demux )
psz_parse
=
strcasestr
(
psz_parse
,
">"
);
/* If clientskip was enabled ... this is an ad */
if
(
psz_clientskip
<
psz_parse
)
b_skip_entry
=
VLC_TRUE
;
else
b_skip_entry
=
VLC_FALSE
;
b_skip_entry
=
(
NULL
!=
psz_clientskip
)
&&
(
psz_clientskip
<
psz_parse
);
// init entry details
FREENULL
(
psz_href
);
...
...
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