Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
bdc8dd67
Commit
bdc8dd67
authored
Jun 10, 2015
by
François Cartegnie
🤞
Browse files
stream_filter: smooth: fix peek error message
parent
1a29a30f
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/stream_filter/smooth/smooth.c
View file @
bdc8dd67
...
...
@@ -825,7 +825,10 @@ static int Peek( stream_t *s, const uint8_t **pp_peek, unsigned i_peek )
chunk_t
*
chunk
=
get_chunk
(
s
,
true
,
NULL
);
if
(
!
chunk
||
!
chunk
->
data
)
{
msg_Err
(
s
,
"peek %"
PRIu64
" or no data"
,
(
uint64_t
)
chunk
);
if
(
!
chunk
)
msg_Err
(
s
,
"cannot peek: no data"
);
else
msg_Err
(
s
,
"cannot peek: chunk pos %"
PRIu64
""
,
chunk
->
read_pos
);
return
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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