Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
98736d8e
Commit
98736d8e
authored
Feb 18, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare local functions static.
parent
8b626b7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
src/control/input.c
src/control/input.c
+1
-1
src/control/vlm.c
src/control/vlm.c
+4
-3
No files found.
src/control/input.c
View file @
98736d8e
...
...
@@ -36,7 +36,7 @@ void libvlc_input_free( libvlc_input_t *p_input )
* Retrieve the input thread. Be sure to release the object
* once you are done with it.
*/
input_thread_t
*
libvlc_get_input_thread
(
libvlc_input_t
*
p_input
,
static
input_thread_t
*
libvlc_get_input_thread
(
libvlc_input_t
*
p_input
,
libvlc_exception_t
*
p_e
)
{
input_thread_t
*
p_input_thread
;
...
...
src/control/vlm.c
View file @
98736d8e
...
...
@@ -364,15 +364,15 @@ LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0);
#undef LIBVLC_VLM_GET_MEDIA_ATTRIBUTE
/* local function to be used in libvlc_vlm_show_media only */
char
*
recurse_answer
(
char
*
psz_prefix
,
vlm_message_t
*
p_answer
)
{
static
char
*
recurse_answer
(
char
*
psz_prefix
,
vlm_message_t
*
p_answer
)
{
char
*
psz_childprefix
;
char
*
psz_response
=
""
;
char
*
response_tmp
;
int
i
;
vlm_message_t
*
aw_child
,
**
paw_child
;
asprintf
(
&
psz_childprefix
,
"%s%s."
,
psz_prefix
,
p_answer
->
psz_name
);
if
(
p_answer
->
i_child
)
{
paw_child
=
p_answer
->
child
;
...
...
@@ -426,4 +426,5 @@ char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name,
free
(
psz_message
);
return
(
psz_response
);
#endif
return
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