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
03a0c3a2
Commit
03a0c3a2
authored
Jun 19, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove warnings
parent
def9c8ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/input/input.c
src/input/input.c
+1
-1
src/video_output/display.c
src/video_output/display.c
+4
-0
No files found.
src/input/input.c
View file @
03a0c3a2
...
...
@@ -2185,7 +2185,7 @@ static bool Control( input_thread_t *p_input,
p_input
->
p
->
input
.
p_stream
)
{
const
uint64_t
i_size
=
stream_Size
(
p_input
->
p
->
input
.
p_stream
);
if
(
i_size
>
0
&&
bookmark
.
i_byte_offset
<=
i_size
)
if
(
i_size
>
0
&&
(
uint64_t
)
bookmark
.
i_byte_offset
<=
i_size
)
{
val
.
f_float
=
(
double
)
bookmark
.
i_byte_offset
/
i_size
;
b_force_update
=
Control
(
p_input
,
INPUT_CONTROL_SET_POSITION
,
val
);
...
...
src/video_output/display.c
View file @
03a0c3a2
...
...
@@ -539,6 +539,9 @@ static void VoutDisplayEventMouse(vout_display_t *vd, int event, va_list args)
vlc_mutex_unlock
(
&
osys
->
lock
);
}
#ifdef __GNUC__
static
void
*
VoutDisplayEventKeyDispatch
(
void
*
data
)
__attribute__
((
noreturn
));
#endif
static
void
*
VoutDisplayEventKeyDispatch
(
void
*
data
)
{
vout_display_owner_sys_t
*
osys
=
data
;
...
...
@@ -1470,6 +1473,7 @@ static void SplitterDisplay(vout_display_t *vd,
}
static
int
SplitterControl
(
vout_display_t
*
vd
,
int
query
,
va_list
args
)
{
(
void
)
vd
;
(
void
)
query
;
(
void
)
args
;
return
VLC_EGENERIC
;
}
static
void
SplitterManage
(
vout_display_t
*
vd
)
...
...
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