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
9e17f766
Commit
9e17f766
authored
Oct 10, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forward-port [17020]
parent
f03e39c3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
modules/access_output/http.c
modules/access_output/http.c
+1
-1
modules/access_output/udp.c
modules/access_output/udp.c
+1
-1
modules/misc/notify/growl.c
modules/misc/notify/growl.c
+1
-1
modules/misc/notify/msn.c
modules/misc/notify/msn.c
+1
-1
No files found.
modules/access_output/http.c
View file @
9e17f766
...
...
@@ -90,7 +90,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"HTTP stream output"
)
);
set_capability
(
"sout access"
,
0
);
set_shortname
(
_
(
"HTTP"
)
);
set_shortname
(
"HTTP"
);
add_shortcut
(
"http"
);
add_shortcut
(
"https"
);
add_shortcut
(
"mmsh"
);
...
...
modules/access_output/udp.c
View file @
9e17f766
...
...
@@ -95,7 +95,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"UDP stream output"
)
);
set_shortname
(
_
(
"UDP"
)
);
set_shortname
(
"UDP"
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_ACO
);
add_integer
(
SOUT_CFG_PREFIX
"caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
VLC_TRUE
);
...
...
modules/misc/notify/growl.c
View file @
9e17f766
...
...
@@ -69,7 +69,7 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset );
vlc_module_begin
();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_shortname
(
_
(
"Growl"
)
);
set_shortname
(
"Growl"
);
set_description
(
_
(
"Growl Notification Plugin"
)
);
add_string
(
"growl-server"
,
SERVER_DEFAULT
,
NULL
,
...
...
modules/misc/notify/msn.c
View file @
9e17f766
...
...
@@ -67,7 +67,7 @@ static int SendToMSN( char * psz_msg );
vlc_module_begin
();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_shortname
(
_
(
"MSN"
)
);
set_shortname
(
"MSN"
);
set_description
(
_
(
"MSN Now-Playing"
)
);
add_string
(
"msn-format"
,
FORMAT_DEFAULT
,
NULL
,
...
...
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