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
981a8542
Commit
981a8542
authored
Oct 22, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add_font: remove unused parameter
parent
3204d232
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
include/vlc_plugin.h
include/vlc_plugin.h
+1
-1
modules/misc/freetype.c
modules/misc/freetype.c
+1
-1
modules/visualization/projectm.cpp
modules/visualization/projectm.cpp
+2
-2
No files found.
include/vlc_plugin.h
View file @
981a8542
...
...
@@ -319,7 +319,7 @@ enum vlc_module_properties
add_string_inner( CONFIG_ITEM_DIRECTORY, name, text, longtext, advc, \
value )
#define add_font( name, value,
p_callback,
text, longtext, advc )\
#define add_font( name, value, text, longtext, advc )\
add_string_inner( CONFIG_ITEM_FONT, name, text, longtext, advc, \
value )
...
...
modules/misc/freetype.c
View file @
981a8542
...
...
@@ -148,7 +148,7 @@ vlc_module_begin ()
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
)
add_font
(
"freetype-font"
,
DEFAULT_FONT
,
NULL
,
FONT_TEXT
,
FONT_LONGTEXT
,
add_font
(
"freetype-font"
,
DEFAULT_FONT
,
FONT_TEXT
,
FONT_LONGTEXT
,
false
)
add_integer
(
"freetype-fontsize"
,
0
,
NULL
,
FONTSIZE_TEXT
,
...
...
modules/visualization/projectm.cpp
View file @
981a8542
...
...
@@ -75,9 +75,9 @@ vlc_module_begin ()
#else
add_loadfile
(
"projectm-preset-path"
,
"/usr/share/projectM/presets"
,
NULL
,
PRESET_PATH_TXT
,
PRESET_PATH_LONGTXT
,
true
)
add_font
(
"projectm-title-font"
,
"/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf"
,
NULL
,
add_font
(
"projectm-title-font"
,
"/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf"
,
TITLE_FONT_TXT
,
TITLE_FONT_LONGTXT
,
true
)
add_font
(
"projectm-menu-font"
,
"/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf"
,
NULL
,
add_font
(
"projectm-menu-font"
,
"/usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono.ttf"
,
MENU_FONT_TXT
,
MENU_FONT_LONGTXT
,
true
)
#endif
add_integer
(
"projectm-width"
,
800
,
NULL
,
WIDTH_TEXT
,
WIDTH_LONGTEXT
,
...
...
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