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
19a9310c
Commit
19a9310c
authored
Aug 29, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules/gui/minimal_macosx/macosx.c: Lower priority of the modules and add a better description.
parent
437d8150
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/minimal_macosx/macosx.c
modules/gui/minimal_macosx/macosx.c
+4
-4
No files found.
modules/gui/minimal_macosx/macosx.c
View file @
19a9310c
...
...
@@ -47,16 +47,16 @@ void E_(CloseVideoGL) ( vlc_object_t * );
vlc_module_begin
();
/* Minimal interface. see intf.m */
set_description
(
_
(
"Mac OS X
interface
"
)
);
set_capability
(
"interface"
,
10
0
);
set_description
(
_
(
"Mac OS X
minimal interface (just launch an icon)
"
)
);
set_capability
(
"interface"
,
5
0
);
set_callbacks
(
E_
(
OpenIntf
),
E_
(
CloseIntf
)
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_MAIN
);
add_submodule
();
/* Will be loaded even without interface module. see voutgl.m */
set_description
(
"Mac OS X
OpenGL
"
);
set_capability
(
"opengl provider"
,
10
0
);
set_description
(
"Mac OS X
minimal OpenGL video output (opens a borderless window)
"
);
set_capability
(
"opengl provider"
,
5
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_callbacks
(
E_
(
OpenVideoGL
),
E_
(
CloseVideoGL
)
);
...
...
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