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
45a40753
Commit
45a40753
authored
Apr 17, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB: declare the same byte sex as the server wants
parent
185c8814
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
modules/video_output/xcb/x11.c
modules/video_output/xcb/x11.c
+3
-6
No files found.
modules/video_output/xcb/x11.c
View file @
45a40753
...
...
@@ -85,6 +85,7 @@ struct vout_sys_t
bool
shm
;
/* whether to use MIT-SHM */
uint8_t
bpp
;
/* bits per pixel */
uint8_t
pad
;
/* scanline pad */
uint8_t
byte_order
;
/* server byte order */
};
static
int
Init
(
vout_thread_t
*
);
...
...
@@ -136,6 +137,7 @@ static int Open (vlc_object_t *obj)
free
(
display
);
const
xcb_setup_t
*
setup
=
xcb_get_setup
(
p_sys
->
conn
);
p_sys
->
byte_order
=
setup
->
image_byte_order
;
/* Get the preferred screen */
xcb_screen_t
*
scr
=
xcb_aux_get_screen
(
p_sys
->
conn
,
snum
);
...
...
@@ -394,12 +396,7 @@ static int PictureInit (vout_thread_t *vout, picture_t *pic)
img
=
xcb_image_create
(
real_width
,
pic
->
p
->
i_lines
,
XCB_IMAGE_FORMAT_Z_PIXMAP
,
p_sys
->
pad
,
p_sys
->
screen
->
root_depth
,
p_sys
->
bpp
,
p_sys
->
bpp
,
#ifdef WORDS_BIGENDIAN
XCB_IMAGE_ORDER_MSB_FIRST
,
#else
XCB_IMAGE_ORDER_LSB_FIRST
,
#endif
XCB_IMAGE_ORDER_MSB_FIRST
,
p_sys
->
byte_order
,
XCB_IMAGE_ORDER_MSB_FIRST
,
NULL
,
(
shm
!=
SHM_ERR
)
?
size
:
0
,
(
shm
!=
SHM_ERR
)
?
shm
:
NULL
);
...
...
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