Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
27daf37c
Commit
27daf37c
authored
Aug 29, 2009
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename "xcb" plugin to "xcb_x11"
This reflects its real capabilities as opposed to "xcb_xv"
parent
336fa7a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
configure.ac
configure.ac
+1
-1
modules/video_output/Modules.am
modules/video_output/Modules.am
+6
-6
modules/video_output/wrapper.c
modules/video_output/wrapper.c
+2
-2
No files found.
configure.ac
View file @
27daf37c
...
...
@@ -3546,7 +3546,7 @@ AS_IF([test "${enable_xcb}" != "no"], [
dnl libxcb
PKG_CHECK_MODULES(XCB, [xcb])
PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
VLC_ADD_PLUGIN([xcb])
VLC_ADD_PLUGIN([xcb
_x11
])
VLC_ADD_PLUGIN([xcb_screen])
AS_IF([test "${enable_xvideo}" != "no"], [
...
...
modules/video_output/Modules.am
View file @
27daf37c
...
...
@@ -21,18 +21,18 @@ SOURCES_vmem = vmem.c
SOURCES_yuv = yuv.c
SOURCES_vout_wrapper = wrapper.c
libxcb_plugin_la_SOURCES = \
libxcb_
x11_
plugin_la_SOURCES = \
xcb/xcb_vlc.h \
xcb/x11.c \
xcb/common.c \
xcb/events.c
libxcb_plugin_la_CFLAGS = $(AM_CFLAGS) \
libxcb_
x11_
plugin_la_CFLAGS = $(AM_CFLAGS) \
$(XCB_CFLAGS) $(XCB_SHM_CFLAGS) \
$(XPROTO_CFLAGS)
libxcb_plugin_la_LIBADD = $(AM_LIBADD) \
libxcb_
x11_
plugin_la_LIBADD = $(AM_LIBADD) \
$(XCB_LIBS) $(XCB_SHM_LIBS) \
$(XPROTO_LIBS)
libxcb_plugin_la_DEPENDENCIES =
libxcb_
x11_
plugin_la_DEPENDENCIES =
libxcb_xv_plugin_la_SOURCES = \
xcb/xcb_vlc.h \
...
...
@@ -57,11 +57,11 @@ libxcb_window_plugin_la_LIBADD = $(AM_LIBADD) \
libxcb_window_plugin_la_DEPENDENCIES =
EXTRA_LTLIBRARIES += \
libxcb_plugin.la \
libxcb_
x11_
plugin.la \
libxcb_xv_plugin.la \
libxcb_window_plugin.la
libvlc_LTLIBRARIES += \
$(LTLIBxcb) \
$(LTLIBxcb
_x11
) \
$(LTLIBxcb_xv) \
$(LTLIBxcb_window)
...
...
modules/video_output/wrapper.c
View file @
27daf37c
...
...
@@ -48,7 +48,7 @@ static void Close(vlc_object_t *);
DECLARE_OPEN
(
aalib
);
DECLARE_OPEN
(
caca
);
DECLARE_OPEN
(
sdl
);
DECLARE_OPEN
(
xcb
);
DECLARE_OPEN
(
xcb
_x11
);
DECLARE_OPEN
(
xcb_xv
);
#undef DECLARE_OPEN
...
...
@@ -73,7 +73,7 @@ vlc_module_begin()
DECLARE_MODULE
(
sdl
,
60
)
add_submodule
()
DECLARE_MODULE
(
xcb
,
75
)
DECLARE_MODULE
(
xcb
_x11
,
75
)
add_submodule
()
DECLARE_MODULE
(
xcb_xv
,
155
)
...
...
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