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
0c8da599
Commit
0c8da599
authored
Jun 10, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Some changes to preferences categorization (This really needs a lot more work)
parent
1111338a
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
43 additions
and
12 deletions
+43
-12
modules/audio_filter/converter/mpgatofixed32.c
modules/audio_filter/converter/mpgatofixed32.c
+2
-2
modules/audio_filter/format.c
modules/audio_filter/format.c
+2
-0
modules/audio_output/file.c
modules/audio_output/file.c
+2
-0
modules/codec/dts.c
modules/codec/dts.c
+0
-2
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+4
-0
modules/misc/freetype.c
modules/misc/freetype.c
+2
-2
modules/misc/network/ipv4.c
modules/misc/network/ipv4.c
+2
-0
modules/misc/svg.c
modules/misc/svg.c
+2
-0
modules/video_filter/mosaic.c
modules/video_filter/mosaic.c
+2
-0
modules/video_filter/motionblur.c
modules/video_filter/motionblur.c
+2
-0
modules/video_filter/motiondetect.c
modules/video_filter/motiondetect.c
+2
-0
modules/video_filter/swscale/filter.c
modules/video_filter/swscale/filter.c
+2
-0
modules/video_output/fb.c
modules/video_output/fb.c
+1
-1
modules/video_output/opengl.c
modules/video_output/opengl.c
+5
-2
modules/video_output/sdl.c
modules/video_output/sdl.c
+3
-0
modules/video_output/svgalib.c
modules/video_output/svgalib.c
+3
-0
modules/video_output/wingdi.c
modules/video_output/wingdi.c
+4
-0
src/libvlc.h
src/libvlc.h
+3
-3
No files found.
modules/audio_filter/converter/mpgatofixed32.c
View file @
0c8da599
...
...
@@ -62,8 +62,8 @@ struct filter_sys_t
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_category
(
CAT_
AUDIO
);
set_subcategory
(
SUBCAT_
AUDIO_MIS
C
);
set_category
(
CAT_
INPUT
);
set_subcategory
(
SUBCAT_
INPUT_ACODE
C
);
set_description
(
_
(
"MPEG audio decoder"
)
);
set_capability
(
"audio filter"
,
100
);
set_callbacks
(
Create
,
Destroy
);
...
...
modules/audio_filter/format.c
View file @
0c8da599
...
...
@@ -199,6 +199,8 @@ static struct
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"audio filter for PCM format conversion"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_MISC
);
set_capability
(
"audio filter2"
,
1
);
set_callbacks
(
Open
,
NULL
);
vlc_module_end
();
...
...
modules/audio_output/file.c
View file @
0c8da599
...
...
@@ -109,6 +109,8 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '),
vlc_module_begin
();
set_description
(
N_
(
"File audio output"
)
);
set_shortname
(
_
(
"File"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
add_string
(
"audiofile-format"
,
"s16"
,
NULL
,
FORMAT_TEXT
,
FORMAT_LONGTEXT
,
VLC_TRUE
);
...
...
modules/codec/dts.c
View file @
0c8da599
...
...
@@ -90,8 +90,6 @@ static block_t *GetSoutBuffer( decoder_t * );
vlc_module_begin
();
set_description
(
_
(
"DTS parser"
)
);
set_capability
(
"decoder"
,
100
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACODEC
);
set_callbacks
(
OpenDecoder
,
CloseDecoder
);
add_submodule
();
...
...
modules/gui/macosx/macosx.m
View file @
0c8da599
...
...
@@ -76,6 +76,8 @@ vlc_module_begin();
add_submodule();
set_description( _("Quartz video") );
set_capability( "video output", 100 );
set_category( CAT_VIDEO);
set_subcategory( SUBCAT_VIDEO_VOUT );
set_callbacks( E_(OpenVideoQT), E_(CloseVideoQT) );
add_integer( "macosx-vdev", 0, NULL, VDEV_TEXT, VDEV_LONGTEXT,
VLC_FALSE );
...
...
@@ -88,6 +90,8 @@ vlc_module_begin();
add_submodule();
set_description( "Mac OS X OpenGL" );
set_capability( "opengl provider", 100 );
set_category( CAT_VIDEO);
set_subcategory( SUBCAT_VIDEO_VOUT );
set_callbacks( E_(OpenVideoGL), E_(CloseVideoGL) );
vlc_module_end();
modules/misc/freetype.c
View file @
0c8da599
...
...
@@ -123,11 +123,11 @@ vlc_module_begin();
/* opacity valid on 0..255, with default 255 = fully opaque */
add_integer_with_range
(
"freetype-opacity"
,
255
,
0
,
255
,
NULL
,
OPACITY_TEXT
,
OPACITY_LONGTEXT
,
VLC_
FALS
E
);
OPACITY_TEXT
,
OPACITY_LONGTEXT
,
VLC_
TRU
E
);
/* hook to the color values list, with default 0x00ffffff = white */
add_integer
(
"freetype-color"
,
0x00FFFFFF
,
NULL
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
VLC_
TRU
E
);
COLOR_LONGTEXT
,
VLC_
FALS
E
);
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
,
0
);
add_integer
(
"freetype-rel-fontsize"
,
16
,
NULL
,
FONTSIZER_TEXT
,
...
...
modules/misc/network/ipv4.c
View file @
0c8da599
...
...
@@ -100,6 +100,8 @@ static int NetOpen( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"IPv4 network abstraction layer"
)
);
set_capability
(
"network"
,
50
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ADVANCED
);
set_callbacks
(
NetOpen
,
NULL
);
add_string
(
"miface-addr"
,
NULL
,
NULL
,
MIFACE_TEXT
,
MIFACE_LONGTEXT
,
VLC_TRUE
);
vlc_module_end
();
...
...
modules/misc/svg.c
View file @
0c8da599
...
...
@@ -58,6 +58,8 @@ static int RenderText( filter_t *p_filter, subpicture_region_t *p_region_out,
#define TEMPLATE_LONGTEXT N_( "Location of a file holding a SVG template for automatic string conversion" )
vlc_module_begin
();
set_category
(
CAT_INPUT
);
set_category
(
SUBCAT_INPUT_SCODEC
);
set_capability
(
"text renderer"
,
101
);
add_shortcut
(
"svg"
);
add_string
(
"svg-template-file"
,
""
,
NULL
,
TEMPLATE_TEXT
,
TEMPLATE_LONGTEXT
,
VLC_TRUE
);
...
...
modules/video_filter/mosaic.c
View file @
0c8da599
...
...
@@ -124,6 +124,8 @@ static char *ppsz_align_descriptions[] =
vlc_module_begin
();
set_description
(
N_
(
"Mosaic video sub filter"
)
);
set_shortname
(
N_
(
"Mosaic"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
);
set_capability
(
"sub filter"
,
0
);
set_callbacks
(
CreateFilter
,
DestroyFilter
);
...
...
modules/video_filter/motionblur.c
View file @
0c8da599
...
...
@@ -57,6 +57,8 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Motion blur filter"
)
);
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
add_integer_with_range
(
"blur-factor"
,
80
,
1
,
127
,
NULL
,
MODE_TEXT
,
MODE_LONGTEXT
,
VLC_FALSE
);
...
...
modules/video_filter/motiondetect.c
View file @
0c8da599
...
...
@@ -59,6 +59,8 @@ static int SendEvents ( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Motion detect video filter"
)
);
set_shortname
(
N_
(
"Motion detect"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
add_integer
(
"motiondetect-history"
,
1
,
NULL
,
HISTORY_TEXT
,
...
...
modules/video_filter/swscale/filter.c
View file @
0c8da599
...
...
@@ -73,6 +73,8 @@ static char *ppsz_mode_descriptions[] =
vlc_module_begin
();
set_description
(
_
(
"Video scaling filter"
)
);
set_capability
(
"video filter2"
,
1000
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_callbacks
(
OpenFilter
,
CloseFilter
);
add_integer
(
"swscale-mode"
,
0
,
NULL
,
MODE_TEXT
,
MODE_LONGTEXT
,
VLC_TRUE
);
...
...
modules/video_output/fb.c
View file @
0c8da599
...
...
@@ -70,7 +70,7 @@ static void GfxMode ( int i_tty );
"for rendering (usually /dev/fb0).")
vlc_module_begin
();
set_shortname
(
"F
B
"
);
set_shortname
(
"F
ramebuffer
"
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
add_file
(
FB_DEV_VAR
,
"/dev/fb0"
,
NULL
,
DEVICE_TEXT
,
DEVICE_LONGTEXT
,
...
...
modules/video_output/opengl.c
View file @
0c8da599
...
...
@@ -109,6 +109,9 @@ static char *ppsz_effects_text[] = {
N_
(
"None"
),
N_
(
"Cube"
),
N_
(
"Transparent Cube"
)
};
vlc_module_begin
();
set_shortname
(
"OpenGL"
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"OpenGL video output"
)
);
#ifdef SYS_DARWIN
set_capability
(
"video output"
,
200
);
...
...
@@ -117,10 +120,10 @@ vlc_module_begin();
#endif
add_shortcut
(
"opengl"
);
add_float
(
"opengl-cube-speed"
,
2
.
0
,
NULL
,
SPEED_TEXT
,
SPEED_LONGTEXT
,
VLC_
FALS
E
);
SPEED_LONGTEXT
,
VLC_
TRU
E
);
set_callbacks
(
CreateVout
,
DestroyVout
);
add_string
(
"opengl-effect"
,
"none"
,
NULL
,
EFFECT_TEXT
,
EFFECT_LONGTEXT
,
VLC_
TRU
E
);
EFFECT_LONGTEXT
,
VLC_
FALS
E
);
change_string_list
(
ppsz_effects
,
ppsz_effects_text
,
0
);
vlc_module_end
();
...
...
modules/video_output/sdl.c
View file @
0c8da599
...
...
@@ -101,6 +101,9 @@ static void SetPalette ( vout_thread_t *,
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_shortname
(
"SDL"
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"Simple DirectMedia Layer video output"
)
);
set_capability
(
"video output"
,
60
);
add_shortcut
(
"sdl"
);
...
...
modules/video_output/svgalib.c
View file @
0c8da599
...
...
@@ -50,6 +50,9 @@ static void SetPalette( vout_thread_t *, uint16_t *, uint16_t *, uint16_t * );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_shortname
(
"SVGAlib"
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
set_description
(
_
(
"SVGAlib video output"
)
);
set_capability
(
"video output"
,
0
);
set_callbacks
(
Create
,
Destroy
);
...
...
modules/video_output/wingdi.c
View file @
0c8da599
...
...
@@ -210,10 +210,14 @@ struct vout_sys_t
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
#ifdef MODULE_NAME_IS_wingapi
set_shortname
(
_
(
"Windows GAPI"
)
);
set_description
(
_
(
"Windows GAPI video output"
)
);
set_capability
(
"video output"
,
20
);
#else
set_shortname
(
_
(
"Windows GDI"
)
);
set_description
(
_
(
"Windows GDI video output"
)
);
set_capability
(
"video output"
,
10
);
#endif
...
...
src/libvlc.h
View file @
0c8da599
...
...
@@ -948,7 +948,7 @@ vlc_module_begin();
FULLSCREEN_LONGTEXT
,
VLC_FALSE
);
change_short
(
'f'
);
add_bool
(
"skip-frames"
,
1
,
NULL
,
SKIP_FRAMES_TEXT
,
SKIP_FRAMES_LONGTEXT
,
VLC_
TRU
E
);
SKIP_FRAMES_LONGTEXT
,
VLC_
FALS
E
);
add_bool
(
"quiet-synchro"
,
0
,
NULL
,
QUIET_SYNCHRO_TEXT
,
QUIET_SYNCHRO_LONGTEXT
,
VLC_TRUE
);
#ifndef SYS_DARWIN
...
...
@@ -961,7 +961,7 @@ vlc_module_begin();
add_directory
(
"snapshot-path"
,
NULL
,
NULL
,
SNAP_PATH_TEXT
,
SNAP_PATH_LONGTEXT
,
VLC_FALSE
);
add_string
(
"snapshot-format"
,
"png"
,
NULL
,
SNAP_FORMAT_TEXT
,
SNAP_FORMAT_LONGTEXT
,
VLC_
TRU
E
);
SNAP_FORMAT_LONGTEXT
,
VLC_
FALS
E
);
change_string_list
(
ppsz_snap_formats
,
NULL
,
0
);
set_section
(
N_
(
"Window properties"
),
NULL
);
...
...
@@ -970,7 +970,7 @@ vlc_module_begin();
add_integer
(
"video-x"
,
-
1
,
NULL
,
VIDEOX_TEXT
,
VIDEOX_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"video-y"
,
-
1
,
NULL
,
VIDEOY_TEXT
,
VIDEOY_LONGTEXT
,
VLC_TRUE
);
add_string
(
"aspect-ratio"
,
""
,
NULL
,
ASPECT_RATIO_TEXT
,
ASPECT_RATIO_LONGTEXT
,
VLC_
TRU
E
);
ASPECT_RATIO_TEXT
,
ASPECT_RATIO_LONGTEXT
,
VLC_
FALS
E
);
add_bool
(
"video-deco"
,
1
,
NULL
,
VIDEO_DECO_TEXT
,
VIDEO_DECO_LONGTEXT
,
VLC_TRUE
);
add_string
(
"video-title"
,
NULL
,
NULL
,
VIDEO_TITLE_TEXT
,
...
...
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