Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
2f47743d
Commit
2f47743d
authored
Feb 26, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gesture: remove one dummy function and clean a bit.
parent
e42739b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
28 deletions
+11
-28
modules/control/gestures.c
modules/control/gestures.c
+11
-28
No files found.
modules/control/gestures.c
View file @
2f47743d
/*****************************************************************************
* gestures.c: control vlc with mouse gestures
*****************************************************************************
* Copyright (C) 2004 the VideoLAN team
* Copyright (C) 2004
-2009
the VideoLAN team
* $Id$
*
* Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
...
...
@@ -116,13 +116,11 @@ int Open ( vlc_object_t *p_this )
/* Allocate instance and initialize some members */
p_intf
->
p_sys
=
malloc
(
sizeof
(
intf_sys_t
)
);
if
(
p_intf
->
p_sys
==
NULL
)
{
return
(
1
);
};
return
VLC_ENOMEM
;
p_intf
->
pf_run
=
RunIntf
;
return
(
0
)
;
return
VLC_SUCCESS
;
}
/*****************************************************************************
...
...
@@ -133,15 +131,6 @@ static int gesture( int i_pattern, int i_num )
return
(
i_pattern
>>
(
i_num
*
4
)
)
&
0xF
;
}
/*****************************************************************************
* input_from_playlist: don't forget to release the return value
* Also this function should really be available from core.
*****************************************************************************/
static
input_thread_t
*
input_from_playlist
(
playlist_t
*
p_playlist
)
{
return
playlist_CurrentInput
(
p_playlist
);
}
/*****************************************************************************
* CloseIntf: destroy dummy interface
*****************************************************************************/
...
...
@@ -220,9 +209,8 @@ static void RunIntf( intf_thread_t *p_intf )
{
input_thread_t
*
p_input
;
p_playlist
=
pl_Hold
(
p_intf
);
p_input
=
input_from_playlist
(
p_playlist
);
vlc_object_release
(
p_playlist
);
p_input
=
playlist_CurrentInput
(
p_playlist
);
pl_Release
(
p_intf
);
if
(
!
p_input
)
break
;
...
...
@@ -247,15 +235,13 @@ static void RunIntf( intf_thread_t *p_intf )
break
;
case
GESTURE
(
LEFT
,
DOWN
,
NONE
,
NONE
):
p_playlist
=
pl_Hold
(
p_intf
);
playlist_Prev
(
p_playlist
);
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
break
;
case
GESTURE
(
RIGHT
,
DOWN
,
NONE
,
NONE
):
p_playlist
=
pl_Hold
(
p_intf
);
playlist_Next
(
p_playlist
);
vlc_object_release
(
p_playlist
);
pl_Release
(
p_intf
);
break
;
case
UP
:
{
...
...
@@ -286,10 +272,8 @@ static void RunIntf( intf_thread_t *p_intf )
int
i_count
,
i
;
p_playlist
=
pl_Hold
(
p_intf
);
p_input
=
input_from_playlist
(
p_playlist
);
vlc_object_release
(
p_playlist
);
p_input
=
playlist_CurrentInput
(
p_playlist
);
pl_Release
(
p_intf
);
if
(
!
p_input
)
break
;
...
...
@@ -341,9 +325,8 @@ static void RunIntf( intf_thread_t *p_intf )
int
i_count
,
i
;
p_playlist
=
pl_Hold
(
p_intf
);
p_input
=
input_from_playlist
(
p_playlist
);
vlc_object_release
(
p_playlist
);
p_input
=
playlist_CurrentInput
(
p_playlist
);
pl_Release
(
p_intf
);
if
(
!
p_input
)
break
;
...
...
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