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
f77bf7a1
Commit
f77bf7a1
authored
May 23, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for older xcb-xv
parent
812fd61f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
configure.ac
configure.ac
+5
-0
modules/video_output/xcb/xvideo.c
modules/video_output/xcb/xvideo.c
+4
-0
src/misc/linux_specific.c
src/misc/linux_specific.c
+1
-1
No files found.
configure.ac
View file @
f77bf7a1
...
...
@@ -4090,6 +4090,11 @@ AS_IF([test "${enable_xcb}" != "no"], [
AS_IF([test "${enable_xvideo}" != "no"], [
PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [
VLC_ADD_PLUGIN([xcb_xv])
], [
PKG_CHECK_MODULES(XCB_XV, [xcb-xv], [
VLC_ADD_PLUGIN([xcb_xv])
VLC_ADD_CFLAGS([xcb_xv], [-DXCB_XV_OLD])
])
])
])
...
...
modules/video_output/xcb/xvideo.c
View file @
f77bf7a1
...
...
@@ -340,7 +340,11 @@ FindFormat (vout_thread_t *vout, vlc_fourcc_t chroma, xcb_xv_port_t port,
xcb_connection_t
*
conn
=
vout
->
p_sys
->
conn
;
const
xcb_xv_image_format_info_t
*
f
,
*
end
;
#ifndef XCB_XV_OLD
f
=
xcb_xv_list_image_formats_format
(
list
);
#else
f
=
(
xcb_xv_image_format_info_t
*
)
(
list
+
1
);
#endif
end
=
f
+
xcb_xv_list_image_formats_format_length
(
list
);
for
(;
f
<
end
;
f
++
)
{
...
...
src/misc/linux_specific.c
View file @
f77bf7a1
...
...
@@ -91,7 +91,7 @@ void system_Init (libvlc_int_t *libvlc, int *argc, const char *argv[])
"Please update to version 2.8 or newer.
\n
"
,
stderr
);
fflush
(
stderr
);
#ifndef DISABLE_BUGGY_GLIBC_CHECK
abort
();
//
abort ();
#endif
}
#endif
...
...
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