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
aef03ba6
Commit
aef03ba6
authored
Jan 04, 2003
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic changes.
parent
15b7c583
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
modules/gui/familiar/familiar.c
modules/gui/familiar/familiar.c
+9
-9
No files found.
modules/gui/familiar/familiar.c
View file @
aef03ba6
...
...
@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.2
4 2003/01/04 13:30:02
jpsaman Exp $
* $Id: familiar.c,v 1.2
5 2003/01/04 13:50:16
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -325,8 +325,8 @@ static int Manage( intf_thread_t *p_intf )
/* Manage the slider */
if
(
p_intf
->
p_libvlc
->
i_cpu
&
CPU_CAPABILITY_FPU
)
{
/* Manage the slider for CPU_CAPABILITY_FPU hardware */
{
/* Manage the slider for CPU_CAPABILITY_FPU hardware */
if
(
p_input
->
stream
.
b_seekable
&&
p_intf
->
p_sys
->
b_playing
)
{
float
newvalue
=
p_intf
->
p_sys
->
p_adj
->
value
;
...
...
@@ -359,10 +359,10 @@ static int Manage( intf_thread_t *p_intf )
}
#undef p_area
}
}
else
{
/* Manage the slider without CPU_CAPABILITY_FPU hardware */
}
else
{
/* Manage the slider without CPU_CAPABILITY_FPU hardware */
if
(
p_input
->
stream
.
b_seekable
&&
p_intf
->
p_sys
->
b_playing
)
{
off_t
newvalue
=
p_intf
->
p_sys
->
p_adj
->
value
;
...
...
@@ -474,10 +474,10 @@ gint E_(GtkModeManage)( intf_thread_t * p_intf )
/* initialize and show slider for seekable streams */
if
(
p_intf
->
p_sys
->
p_input
->
stream
.
b_seekable
)
{
if
(
p_intf
->
p_libvlc
->
i_cpu
&
CPU_CAPABILITY_FPU
)
if
(
p_intf
->
p_libvlc
->
i_cpu
&
CPU_CAPABILITY_FPU
)
p_intf
->
p_sys
->
p_adj
->
value
=
p_intf
->
p_sys
->
f_adj_oldvalue
=
0
;
else
p_intf
->
p_sys
->
p_adj
->
value
=
p_intf
->
p_sys
->
i_adj_oldvalue
=
0
;
p_intf
->
p_sys
->
p_adj
->
value
=
p_intf
->
p_sys
->
i_adj_oldvalue
=
0
;
gtk_signal_emit_by_name
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_adj
),
"value_changed"
);
gtk_widget_show
(
GTK_WIDGET
(
p_slider
)
);
...
...
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