Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
65ce3ece
Commit
65ce3ece
authored
May 28, 2003
by
Eric Petit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules/video_output/x11/xcommon.c : compile fix for gcc != 3
parent
7d5b13c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
modules/video_output/x11/xcommon.c
modules/video_output/x11/xcommon.c
+10
-7
No files found.
modules/video_output/x11/xcommon.c
View file @
65ce3ece
...
...
@@ -2,7 +2,7 @@
* xcommon.c: Functions common to the X11 and XVideo plugins
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: xcommon.c,v 1.
19 2003/05/26 19:06:47 gbazin
Exp $
* $Id: xcommon.c,v 1.
20 2003/05/28 00:52:05 titer
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -532,6 +532,8 @@ static int ManageVideo( vout_thread_t *p_vout )
case
XK_Menu
:
{
intf_thread_t
*
p_intf
;
playlist_t
*
p_playlist
;
p_intf
=
vlc_object_find
(
p_vout
,
VLC_OBJECT_INTF
,
FIND_ANYWHERE
);
if
(
p_intf
)
...
...
@@ -540,9 +542,8 @@ static int ManageVideo( vout_thread_t *p_vout )
vlc_object_release
(
p_intf
);
}
playlist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
!=
NULL
)
{
vlc_value_t
val
;
...
...
@@ -676,6 +677,8 @@ static int ManageVideo( vout_thread_t *p_vout )
case
Button3
:
{
intf_thread_t
*
p_intf
;
playlist_t
*
p_playlist
;
var_Get
(
p_vout
,
"mouse-button-down"
,
&
val
);
val
.
i_int
&=
~
4
;
var_Set
(
p_vout
,
"mouse-button-down"
,
val
);
...
...
@@ -687,9 +690,9 @@ static int ManageVideo( vout_thread_t *p_vout )
vlc_object_release
(
p_intf
);
}
p
laylist_t
*
p_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
p
_playlist
=
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
!=
NULL
)
{
vlc_value_t
val
;
...
...
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