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
e70ef78e
Commit
e70ef78e
authored
Apr 15, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Switch b_strict to true in module_Need calls (we're requiring a specific module)
* Add missing space in help string.
parent
4dc59a4f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
src/libvlc-module.c
src/libvlc-module.c
+1
-1
src/video_output/video_output.c
src/video_output/video_output.c
+2
-1
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+3
-2
No files found.
src/libvlc-module.c
View file @
e70ef78e
...
...
@@ -896,7 +896,7 @@ static const char *ppsz_clock_descriptions[] =
"for example if you associated VLC with some media types and you " \
"don't want a new instance of VLC to be opened each time you " \
"open a file in your file manager. This option will allow you " \
"to play the file with the already running instance or enqueue it." \
"to play the file with the already running instance or enqueue it.
" \
"This option require the D-Bus session daemon to be active " \
"and the running instance of VLC to use D-Bus control interface.")
...
...
src/video_output/video_output.c
View file @
e70ef78e
...
...
@@ -975,7 +975,8 @@ static void RunThread( vout_thread_t *p_vout)
p_vfilter
->
p_cfg
=
p_vout
->
p_vfilters_cfg
[
i
];
p_vfilter
->
p_module
=
module_Need
(
p_vfilter
,
"video filter2"
,
p_vout
->
psz_vfilters
[
i
],
0
);
p_vout
->
psz_vfilters
[
i
],
VLC_TRUE
);
if
(
p_vfilter
->
p_module
)
{
...
...
src/video_output/vout_subpictures.c
View file @
e70ef78e
...
...
@@ -140,7 +140,7 @@ int spu_ParseChain( spu_t *p_spu )
p_spu
->
pp_filter
[
p_spu
->
i_filter
]
->
p_cfg
=
p_cfg
;
p_spu
->
pp_filter
[
p_spu
->
i_filter
]
->
p_module
=
module_Need
(
p_spu
->
pp_filter
[
p_spu
->
i_filter
],
"sub filter"
,
psz_name
,
0
);
"sub filter"
,
psz_name
,
VLC_TRUE
);
if
(
p_spu
->
pp_filter
[
p_spu
->
i_filter
]
->
p_module
)
{
filter_owner_sys_t
*
p_sys
=
malloc
(
sizeof
(
filter_owner_sys_t
)
);
...
...
@@ -551,7 +551,8 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
if
(
psz_modulename
&&
*
psz_modulename
)
{
p_spu
->
p_text
->
p_module
=
module_Need
(
p_spu
->
p_text
,
"text renderer"
,
psz_modulename
,
VLC_TRUE
);
module_Need
(
p_spu
->
p_text
,
"text renderer"
,
psz_modulename
,
VLC_TRUE
);
}
if
(
!
p_spu
->
p_text
->
p_module
)
{
...
...
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