Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
0863e5b7
Commit
0863e5b7
authored
Dec 16, 2002
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup action.
parent
86f66ed9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
modules/gui/familiar/callbacks.c
modules/gui/familiar/callbacks.c
+10
-7
modules/gui/familiar/familiar.h
modules/gui/familiar/familiar.h
+1
-2
No files found.
modules/gui/familiar/callbacks.c
View file @
0863e5b7
...
...
@@ -2,7 +2,7 @@
* callbacks.c : Callbacks for the Familiar Linux Gtk+ plugin.
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* $Id: callbacks.c,v 1.1
5 2002/12/16 21:48:17
jpsaman Exp $
* $Id: callbacks.c,v 1.1
6 2002/12/16 22:06:59
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -282,12 +282,13 @@ void
on_toolbar_rewind_clicked
(
GtkButton
*
button
,
gpointer
user_data
)
{
intf_thread_t
*
p_intf
=
GtkGetIntf
(
GTK_WIDGET
(
button
)
);
intf_thread_t
*
p_intf
=
GtkGetIntf
(
button
);
if
(
p_intf
->
p_sys
->
p_input
)
if
(
p_intf
->
p_sys
->
p_input
!=
NULL
)
{
input_SetStatus
(
p_intf
->
p_sys
->
p_input
,
INPUT_STATUS_SLOWER
);
}
else
msg_Err
(
p_intf
,
"p_intf->p_sys->p_input is NULL"
);
}
...
...
@@ -295,12 +296,13 @@ void
on_toolbar_pause_clicked
(
GtkButton
*
button
,
gpointer
user_data
)
{
intf_thread_t
*
p_intf
=
GtkGetIntf
(
GTK_WIDGET
(
button
)
);
intf_thread_t
*
p_intf
=
GtkGetIntf
(
button
);
if
(
p_intf
->
p_sys
->
p_input
)
if
(
p_intf
->
p_sys
->
p_input
!=
NULL
)
{
input_SetStatus
(
p_intf
->
p_sys
->
p_input
,
INPUT_STATUS_PAUSE
);
}
else
msg_Err
(
p_intf
,
"p_intf->p_sys->p_input is NULL"
);
}
...
...
@@ -356,12 +358,13 @@ void
on_toolbar_forward_clicked
(
GtkButton
*
button
,
gpointer
user_data
)
{
intf_thread_t
*
p_intf
=
GtkGetIntf
(
GTK_WIDGET
(
button
)
);
intf_thread_t
*
p_intf
=
GtkGetIntf
(
button
);
if
(
p_intf
->
p_sys
->
p_input
)
if
(
p_intf
->
p_sys
->
p_input
!=
NULL
)
{
input_SetStatus
(
p_intf
->
p_sys
->
p_input
,
INPUT_STATUS_FASTER
);
}
else
msg_Err
(
p_intf
,
"p_intf->p_sys->p_input is NULL"
);
}
...
...
modules/gui/familiar/familiar.h
View file @
0863e5b7
...
...
@@ -2,7 +2,7 @@
* familiar.h: private Gtk+ interface description
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: familiar.h,v 1.
8 2002/12/15 22:45:35
jpsaman Exp $
* $Id: familiar.h,v 1.
9 2002/12/16 22:06:59
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -41,7 +41,6 @@ struct intf_sys_t
GtkCList
*
p_clist
;
vlc_bool_t
b_autoplayfile
;
vlc_bool_t
b_filelist_update
;
/* The input thread */
input_thread_t
*
p_input
;
};
...
...
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