Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
François Cartegnie
libdvdcss
Commits
ec7c3a56
Commit
ec7c3a56
authored
Jan 28, 2015
by
Thomas Guillem
Committed by
Jean-Baptiste Kempf
Jan 28, 2015
Browse files
dvdcss_open_stream: cast to off_t
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
cce6baf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/device.c
View file @
ec7c3a56
...
...
@@ -546,7 +546,7 @@ static int libc_seek( dvdcss_t dvdcss, int i_blocks )
static
int
stream_seek
(
dvdcss_t
dvdcss
,
int
i_blocks
)
{
off_t
i_seek
=
i_blocks
*
DVDCSS_BLOCK_SIZE
;
off_t
i_seek
=
(
off_t
)
i_blocks
*
(
off_t
)
DVDCSS_BLOCK_SIZE
;
if
(
!
dvdcss
->
p_stream_cb
->
pf_seek
)
return
-
1
;
...
...
@@ -642,7 +642,7 @@ static int stream_read ( dvdcss_t dvdcss, void *p_buffer, int i_blocks )
{
off_t
i_size
,
i_ret
,
i_ret_blocks
;
i_size
=
i_blocks
*
DVDCSS_BLOCK_SIZE
;
i_size
=
(
off_t
)
i_blocks
*
(
off_t
)
DVDCSS_BLOCK_SIZE
;
if
(
!
dvdcss
->
p_stream_cb
->
pf_read
)
return
-
1
;
...
...
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