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
8a983190
Commit
8a983190
authored
Apr 11, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove bridge from preferences panel + fix description, patch by Chritophe Mutricy
parent
7f4508b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
modules/stream_out/bridge.c
modules/stream_out/bridge.c
+8
-7
No files found.
modules/stream_out/bridge.c
View file @
8a983190
...
...
@@ -55,24 +55,25 @@ static void CloseIn ( vlc_object_t * );
#define SOUT_CFG_PREFIX_IN "sout-bridge-in-"
vlc_module_begin
();
set_shortname
(
_
(
"Bridge"
));
set_description
(
_
(
"Bridge stream output"
));
add_submodule
();
set_shortname
(
_
(
"Bridge out"
));
set_description
(
_
(
"Bridge out stream output"
)
);
set_section
(
N_
(
"Bridge out"
),
NULL
);
set_capability
(
"sout stream"
,
50
);
add_shortcut
(
"bridge-out"
);
/* Only usable with VLM. No category so not in gui preferences
set_category( CAT_SOUT );
set_subcategory
(
SUBCAT_SOUT_STREAM
);
set_subcategory( SUBCAT_SOUT_STREAM );
*/
add_integer
(
SOUT_CFG_PREFIX_OUT
"id"
,
0
,
NULL
,
ID_TEXT
,
ID_LONGTEXT
,
VLC_FALSE
);
set_callbacks
(
OpenOut
,
CloseOut
);
add_submodule
();
set_shortname
(
_
(
"Bridge in"
));
set_description
(
_
(
"Bridge in stream output"
)
);
set_section
(
N_
(
"Bridge in"
),
NULL
);
set_capability
(
"sout stream"
,
50
);
add_shortcut
(
"bridge-in"
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_STREAM
);
/*
set_category( CAT_SOUT );
set_subcategory( SUBCAT_SOUT_STREAM );
*/
add_integer
(
SOUT_CFG_PREFIX_IN
"delay"
,
100
,
NULL
,
DELAY_TEXT
,
DELAY_LONGTEXT
,
VLC_FALSE
);
add_integer
(
SOUT_CFG_PREFIX_IN
"id-offset"
,
8192
,
NULL
,
ID_OFFSET_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