Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ebc99464
Commit
ebc99464
authored
Apr 16, 2012
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bluray: Kill some warnings.
parent
edaecc21
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/access/bluray.c
modules/access/bluray.c
+2
-2
No files found.
modules/access/bluray.c
View file @
ebc99464
...
@@ -996,7 +996,7 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
...
@@ -996,7 +996,7 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
case
DEMUX_GET_LENGTH
:
case
DEMUX_GET_LENGTH
:
{
{
int64_t
*
pi_length
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
int64_t
*
pi_length
=
(
int64_t
*
)
va_arg
(
args
,
int64_t
*
);
*
pi_length
=
p_demux
->
info
.
i_title
<
p_sys
->
i_title
?
CUR_LENGTH
:
0
;
*
pi_length
=
p_demux
->
info
.
i_title
<
(
int
)
p_sys
->
i_title
?
CUR_LENGTH
:
0
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
case
DEMUX_SET_TIME
:
case
DEMUX_SET_TIME
:
...
@@ -1015,7 +1015,7 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
...
@@ -1015,7 +1015,7 @@ static int blurayControl(demux_t *p_demux, int query, va_list args)
case
DEMUX_GET_POSITION
:
case
DEMUX_GET_POSITION
:
{
{
double
*
pf_position
=
(
double
*
)
va_arg
(
args
,
double
*
);
double
*
pf_position
=
(
double
*
)
va_arg
(
args
,
double
*
);
*
pf_position
=
p_demux
->
info
.
i_title
<
p_sys
->
i_title
?
*
pf_position
=
p_demux
->
info
.
i_title
<
(
int
)
p_sys
->
i_title
?
(
double
)
FROM_TICKS
(
bd_tell_time
(
p_sys
->
bluray
))
/
CUR_LENGTH
:
0
.
0
;
(
double
)
FROM_TICKS
(
bd_tell_time
(
p_sys
->
bluray
))
/
CUR_LENGTH
:
0
.
0
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
...
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