Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
32a1da0d
Commit
32a1da0d
authored
Aug 16, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark *-altfullscreen as obsolete for now
parent
03be7a7d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
40 deletions
+5
-40
modules/video_output/x11/glx.c
modules/video_output/x11/glx.c
+0
-10
modules/video_output/x11/x11.c
modules/video_output/x11/x11.c
+0
-10
modules/video_output/x11/xvideo.c
modules/video_output/x11/xvideo.c
+0
-10
modules/video_output/x11/xvmc.c
modules/video_output/x11/xvmc.c
+0
-10
modules/video_output/xcb/window.c
modules/video_output/xcb/window.c
+5
-0
No files found.
modules/video_output/x11/glx.c
View file @
32a1da0d
...
@@ -92,15 +92,6 @@ static void SwitchContext( vout_thread_t * );
...
@@ -92,15 +92,6 @@ static void SwitchContext( vout_thread_t * );
"If your graphics card provides several adaptors, you have " \
"If your graphics card provides several adaptors, you have " \
"to choose which one will be used (you shouldn't have to change this).")
"to choose which one will be used (you shouldn't have to change this).")
#define ALT_FS_TEXT N_("Alternate fullscreen method")
#define ALT_FS_LONGTEXT N_( \
"There are two ways to make a fullscreen window, unfortunately each one " \
"has its drawbacks.\n" \
"1) Let the window manager handle your fullscreen window (default), but " \
"things like taskbars will likely show on top of the video.\n" \
"2) Completely bypass the window manager, but then nothing will be able " \
"to show on top of the video.")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_LONGTEXT N_( \
#define DISPLAY_LONGTEXT N_( \
"X11 hardware display to use. By default VLC will " \
"X11 hardware display to use. By default VLC will " \
...
@@ -120,7 +111,6 @@ vlc_module_begin ()
...
@@ -120,7 +111,6 @@ vlc_module_begin ()
add_string
(
"glx-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_string
(
"glx-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_integer
(
"glx-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_integer
(
"glx-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_bool
(
"glx-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
true
)
#ifdef HAVE_SYS_SHM_H
#ifdef HAVE_SYS_SHM_H
add_bool
(
"glx-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
add_bool
(
"glx-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
#endif
#endif
...
...
modules/video_output/x11/x11.c
View file @
32a1da0d
...
@@ -43,15 +43,6 @@ extern void Deactivate ( vlc_object_t * );
...
@@ -43,15 +43,6 @@ extern void Deactivate ( vlc_object_t * );
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
*****************************************************************************/
*****************************************************************************/
#define ALT_FS_TEXT N_("Alternate fullscreen method")
#define ALT_FS_LONGTEXT N_( \
"There are two ways to make a fullscreen window, unfortunately each one " \
"has its drawbacks.\n" \
"1) Let the window manager handle your fullscreen window (default), but " \
"things like taskbars will likely show on top of the video.\n" \
"2) Completely bypass the window manager, but then nothing will be able " \
"to show on top of the video.")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_LONGTEXT N_( \
#define DISPLAY_LONGTEXT N_( \
"X11 hardware display to use. By default VLC will " \
"X11 hardware display to use. By default VLC will " \
...
@@ -66,7 +57,6 @@ vlc_module_begin ()
...
@@ -66,7 +57,6 @@ vlc_module_begin ()
set_category
(
CAT_VIDEO
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
add_string
(
"x11-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_string
(
"x11-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_bool
(
"x11-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
true
)
#ifdef HAVE_SYS_SHM_H
#ifdef HAVE_SYS_SHM_H
add_bool
(
"x11-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
add_bool
(
"x11-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
#endif
#endif
...
...
modules/video_output/x11/xvideo.c
View file @
32a1da0d
...
@@ -49,15 +49,6 @@ extern void Deactivate ( vlc_object_t * );
...
@@ -49,15 +49,6 @@ extern void Deactivate ( vlc_object_t * );
"If your graphics card provides several adaptors, you need to choose " \
"If your graphics card provides several adaptors, you need to choose " \
"which one will be used (you shouldn't have to change this).")
"which one will be used (you shouldn't have to change this).")
#define ALT_FS_TEXT N_("Alternate fullscreen method")
#define ALT_FS_LONGTEXT N_( \
"There are two ways to make a fullscreen window, unfortunately each one " \
"has its drawbacks.\n" \
"1) Let the window manager handle your fullscreen window (default), but " \
"things like taskbars will likely show on top of the video.\n" \
"2) Completely bypass the window manager, but then nothing will be able " \
"to show on top of the video.")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_TEXT N_("X11 display")
#define DISPLAY_LONGTEXT N_( \
#define DISPLAY_LONGTEXT N_( \
"X11 hardware display to use. By default VLC will " \
"X11 hardware display to use. By default VLC will " \
...
@@ -78,7 +69,6 @@ vlc_module_begin ()
...
@@ -78,7 +69,6 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
set_subcategory
(
SUBCAT_VIDEO_VOUT
)
add_string
(
"xvideo-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_string
(
"xvideo-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_integer
(
"xvideo-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_integer
(
"xvideo-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_bool
(
"xvideo-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
true
)
add_string
(
"xvideo-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
true
)
add_string
(
"xvideo-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
true
)
#ifdef HAVE_SYS_SHM_H
#ifdef HAVE_SYS_SHM_H
add_bool
(
"xvideo-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
add_bool
(
"xvideo-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
...
...
modules/video_output/x11/xvmc.c
View file @
32a1da0d
...
@@ -99,15 +99,6 @@ extern void Deactivate ( vlc_object_t * );
...
@@ -99,15 +99,6 @@ extern void Deactivate ( vlc_object_t * );
"If you graphics card provides several adaptors, this option allows you " \
"If you graphics card provides several adaptors, this option allows you " \
"to choose which one will be used (you shouldn't have to change this).")
"to choose which one will be used (you shouldn't have to change this).")
#define ALT_FS_TEXT N_("Alternate fullscreen method")
#define ALT_FS_LONGTEXT N_( \
"There are two ways to make a fullscreen window, unfortunately each one " \
"has its drawbacks.\n" \
"1) Let the window manager handle your fullscreen window (default), but " \
"things like taskbars will likely show on top of the video.\n" \
"2) Completely bypass the window manager, but then nothing will be able " \
"to show on top of the video.")
#define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_TEXT N_("X11 display name")
#define DISPLAY_LONGTEXT N_( \
#define DISPLAY_LONGTEXT N_( \
"Specify the X11 hardware display you want to use. By default VLC will " \
"Specify the X11 hardware display you want to use. By default VLC will " \
...
@@ -132,7 +123,6 @@ vlc_module_begin ()
...
@@ -132,7 +123,6 @@ vlc_module_begin ()
set_shortname
(
"XVMC"
)
set_shortname
(
"XVMC"
)
add_string
(
"xvmc-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_string
(
"xvmc-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
add_integer
(
"xvmc-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_integer
(
"xvmc-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
true
)
add_bool
(
"xvmc-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
true
)
add_string
(
"xvmc-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
true
)
add_string
(
"xvmc-chroma"
,
NULL
,
NULL
,
CHROMA_TEXT
,
CHROMA_LONGTEXT
,
true
)
#ifdef HAVE_SYS_SHM_H
#ifdef HAVE_SYS_SHM_H
add_bool
(
"xvmc-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
add_bool
(
"xvmc-shm"
,
1
,
NULL
,
SHM_TEXT
,
SHM_LONGTEXT
,
true
)
...
...
modules/video_output/xcb/window.c
View file @
32a1da0d
...
@@ -68,6 +68,11 @@ vlc_module_begin ()
...
@@ -68,6 +68,11 @@ vlc_module_begin ()
add_string
(
"x11-display"
,
NULL
,
NULL
,
add_string
(
"x11-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
true
)
/* Obsolete since 1.1.0: */
add_obsolete_bool
(
"x11-altfullscreen"
)
add_obsolete_bool
(
"xvideo-altfullscreen"
)
add_obsolete_bool
(
"xvmc-altfullscreen"
)
add_obsolete_bool
(
"glx-altfullscreen"
)
add_submodule
()
add_submodule
()
set_shortname
(
N_
(
"Drawable"
))
set_shortname
(
N_
(
"Drawable"
))
...
...
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