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
2a5e51a1
Commit
2a5e51a1
authored
Dec 11, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to categorize some vouts
parent
17d55b1d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
0 deletions
+15
-0
modules/video_output/directx/directx.c
modules/video_output/directx/directx.c
+2
-0
modules/video_output/directx/glwin32.c
modules/video_output/directx/glwin32.c
+2
-0
modules/video_output/qte/qte.cpp
modules/video_output/qte/qte.cpp
+2
-0
modules/video_output/x11/glx.c
modules/video_output/x11/glx.c
+3
-0
modules/video_output/x11/x11.c
modules/video_output/x11/x11.c
+3
-0
modules/video_output/x11/xvideo.c
modules/video_output/x11/xvideo.c
+3
-0
No files found.
modules/video_output/directx/directx.c
View file @
2a5e51a1
...
...
@@ -140,6 +140,8 @@ static char *ppsz_dev[] = { "" };
static
char
*
ppsz_dev_text
[]
=
{
N_
(
"Default"
)
};
vlc_module_begin
();
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_bool
(
"directx-hw-yuv"
,
1
,
NULL
,
HW_YUV_TEXT
,
HW_YUV_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"directx-use-sysmem"
,
0
,
NULL
,
SYSMEM_TEXT
,
SYSMEM_LONGTEXT
,
...
...
modules/video_output/directx/glwin32.c
View file @
2a5e51a1
...
...
@@ -59,6 +59,8 @@ static void GLSwapBuffers( vout_thread_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"Win32 OpenGL provider"
)
);
set_capability
(
"opengl provider"
,
100
);
add_shortcut
(
"glwin32"
);
...
...
modules/video_output/qte/qte.cpp
View file @
2a5e51a1
...
...
@@ -110,6 +110,8 @@ extern "C"
{
vlc_module_begin
();
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
// add_category_hint( N_("QT Embedded"), NULL );
// add_string( "qte-display", "landscape", NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT);
set_description
(
_
(
"QT Embedded video output"
)
);
...
...
modules/video_output/x11/glx.c
View file @
2a5e51a1
...
...
@@ -109,6 +109,9 @@ static void SwitchContext( vout_thread_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"OpenGL"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"X11 OpenGL provider"
)
);
set_capability
(
"opengl provider"
,
50
);
set_callbacks
(
CreateOpenGL
,
DestroyOpenGL
);
...
...
modules/video_output/x11/x11.c
View file @
2a5e51a1
...
...
@@ -64,6 +64,9 @@ extern void E_(Deactivate) ( vlc_object_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"X11"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_string
(
"x11-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"x11-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
VLC_TRUE
);
#ifdef HAVE_SYS_SHM_H
...
...
modules/video_output/x11/xvideo.c
View file @
2a5e51a1
...
...
@@ -75,6 +75,9 @@ extern void E_(Deactivate) ( vlc_object_t * );
"set it to 0 for first screen, 1 for the second.")
vlc_module_begin
();
set_name
(
N_
(
"XVideo"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_string
(
"xvideo-display"
,
NULL
,
NULL
,
DISPLAY_TEXT
,
DISPLAY_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"xvideo-adaptor"
,
-
1
,
NULL
,
ADAPTOR_TEXT
,
ADAPTOR_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"xvideo-altfullscreen"
,
0
,
NULL
,
ALT_FS_TEXT
,
ALT_FS_LONGTEXT
,
VLC_TRUE
);
...
...
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