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
34c4dbbd
Commit
34c4dbbd
authored
Apr 18, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB: select the screen from parent window rather than from DISPLAY
parent
4257d965
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
19 deletions
+45
-19
modules/video_output/xcb/x11.c
modules/video_output/xcb/x11.c
+45
-19
No files found.
modules/video_output/xcb/x11.c
View file @
34c4dbbd
...
@@ -123,8 +123,7 @@ static int Open (vlc_object_t *obj)
...
@@ -123,8 +123,7 @@ static int Open (vlc_object_t *obj)
/* Connect to X */
/* Connect to X */
char
*
display
=
var_CreateGetNonEmptyString
(
vout
,
"x11-display"
);
char
*
display
=
var_CreateGetNonEmptyString
(
vout
,
"x11-display"
);
int
snum
;
p_sys
->
conn
=
xcb_connect
(
display
,
NULL
);
p_sys
->
conn
=
xcb_connect
(
display
,
&
snum
);
if
(
xcb_connection_has_error
(
p_sys
->
conn
)
/*== NULL*/
)
if
(
xcb_connection_has_error
(
p_sys
->
conn
)
/*== NULL*/
)
{
{
msg_Err
(
vout
,
"cannot connect to X server %s"
,
msg_Err
(
vout
,
"cannot connect to X server %s"
,
...
@@ -134,14 +133,54 @@ static int Open (vlc_object_t *obj)
...
@@ -134,14 +133,54 @@ static int Open (vlc_object_t *obj)
}
}
free
(
display
);
free
(
display
);
/* Get window */
p_sys
->
embed
=
vout_RequestXWindow
(
vout
,
&
(
int
){
0
},
&
(
int
){
0
},
&
(
unsigned
){
0
},
&
(
unsigned
){
0
});
if
(
p_sys
->
embed
==
NULL
)
{
msg_Err
(
vout
,
"parent window not available"
);
goto
error
;
}
xcb_window_t
root
;
{
xcb_get_geometry_reply_t
*
geo
;
xcb_get_geometry_cookie_t
ck
;
ck
=
xcb_get_geometry
(
p_sys
->
conn
,
p_sys
->
embed
->
handle
.
xid
);
geo
=
xcb_get_geometry_reply
(
p_sys
->
conn
,
ck
,
NULL
);
if
(
geo
==
NULL
)
{
msg_Err
(
vout
,
"parent window not valid"
);
goto
error
;
}
root
=
geo
->
root
;
free
(
geo
);
/* Subscribe to parent window resize events */
const
uint32_t
value
=
XCB_EVENT_MASK_STRUCTURE_NOTIFY
;
xcb_change_window_attributes
(
p_sys
->
conn
,
p_sys
->
embed
->
handle
.
xid
,
XCB_CW_EVENT_MASK
,
&
value
);
}
/* Find the selected screen */
const
xcb_setup_t
*
setup
=
xcb_get_setup
(
p_sys
->
conn
);
const
xcb_setup_t
*
setup
=
xcb_get_setup
(
p_sys
->
conn
);
p_sys
->
byte_order
=
setup
->
image_byte_order
;
p_sys
->
byte_order
=
setup
->
image_byte_order
;
/* Get the preferred screen */
xcb_screen_t
*
scr
=
NULL
;
xcb_screen_t
*
scr
=
xcb_aux_get_screen
(
p_sys
->
conn
,
snum
);
for
(
xcb_screen_iterator_t
i
=
xcb_setup_roots_iterator
(
setup
);
i
.
rem
>
0
&&
scr
==
NULL
;
xcb_screen_next
(
&
i
))
{
if
(
i
.
data
->
root
==
root
)
scr
=
i
.
data
;
}
if
(
scr
==
NULL
)
{
msg_Err
(
vout
,
"parent window screen not found"
);
goto
error
;
}
p_sys
->
screen
=
scr
;
p_sys
->
screen
=
scr
;
assert
(
p_sys
->
screen
);
msg_Dbg
(
vout
,
"using screen 0x%"
PRIx32
,
scr
->
root
);
msg_Dbg
(
vout
,
"using screen %d"
,
snum
);
/* Determine our video format. Normally, this is done in pf_init(), but
/* Determine our video format. Normally, this is done in pf_init(), but
* this plugin always uses the same format for a given X11 screen. */
* this plugin always uses the same format for a given X11 screen. */
...
@@ -286,19 +325,6 @@ static int Open (vlc_object_t *obj)
...
@@ -286,19 +325,6 @@ static int Open (vlc_object_t *obj)
free
(
r
);
free
(
r
);
}
}
/* Get window */
/* FIXME: WTH to put as initial width/height values??? */
p_sys
->
embed
=
vout_RequestXWindow
(
vout
,
&
(
int
){
0
},
&
(
int
){
0
},
&
(
unsigned
){
0
},
&
(
unsigned
){
0
});
if
(
p_sys
->
embed
==
NULL
)
{
msg_Err
(
vout
,
"parent window not available"
);
goto
error
;
}
/* Subscribe to parent window resize events */
xcb_change_window_attributes
(
p_sys
->
conn
,
p_sys
->
embed
->
handle
.
xid
,
XCB_CW_EVENT_MASK
,
&
(
uint32_t
){
XCB_EVENT_MASK_STRUCTURE_NOTIFY
});
vout
->
pf_init
=
Init
;
vout
->
pf_init
=
Init
;
vout
->
pf_end
=
Deinit
;
vout
->
pf_end
=
Deinit
;
vout
->
pf_display
=
Display
;
vout
->
pf_display
=
Display
;
...
...
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