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
3ffd6e0f
Commit
3ffd6e0f
authored
Feb 25, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream_filter/httplive.c: beautify message
Make the error message easier to read by splitting it up.
parent
ecc5addf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/stream_filter/httplive.c
modules/stream_filter/httplive.c
+3
-3
No files found.
modules/stream_filter/httplive.c
View file @
3ffd6e0f
...
...
@@ -949,11 +949,11 @@ static int hls_UpdatePlaylist(stream_t *s, hls_stream_t *hls_new, hls_stream_t *
(
p
->
duration
!=
segment
->
duration
)
||
(
strcmp
(
p
->
url
.
psz_path
,
segment
->
url
.
psz_path
)
!=
0
))
{
msg_Err
(
s
,
"existing segment %d found with different content"
,
p
->
sequence
);
msg_Err
(
s
,
"existing segment found with different content"
);
msg_Err
(
s
,
"- sequence: new=%d, old=%d"
,
p
->
sequence
,
segment
->
sequence
);
msg_Err
(
s
,
"- duration: new=%d, old=%d"
,
p
->
duration
,
segment
->
duration
);
msg_Err
(
s
,
"- file: new=%s, old=%s"
,
p
->
url
.
psz_path
,
segment
->
url
.
psz_path
);
msg_Err
(
s
,
"- file: new=%s"
,
p
->
url
.
psz_path
);
msg_Err
(
s
,
" old=%s"
,
segment
->
url
.
psz_path
);
}
}
else
...
...
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