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
ab85aafb
Commit
ab85aafb
authored
Jan 06, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing const to input_item_SetURI.
parent
ca15fe09
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/vlc_input.h
include/vlc_input.h
+1
-1
src/input/item.c
src/input/item.c
+1
-1
No files found.
include/vlc_input.h
View file @
ab85aafb
...
...
@@ -128,7 +128,7 @@ VLC_EXPORT( bool, input_item_MetaMatch, ( input_item_t *p_i, vlc_meta_type_t met
VLC_EXPORT
(
char
*
,
input_item_GetMeta
,
(
input_item_t
*
p_i
,
vlc_meta_type_t
meta_type
)
);
VLC_EXPORT
(
char
*
,
input_item_GetName
,
(
input_item_t
*
p_i
)
);
VLC_EXPORT
(
char
*
,
input_item_GetURI
,
(
input_item_t
*
p_i
)
);
VLC_EXPORT
(
void
,
input_item_SetURI
,
(
input_item_t
*
p_i
,
c
har
*
psz_uri
));
VLC_EXPORT
(
void
,
input_item_SetURI
,
(
input_item_t
*
p_i
,
c
onst
char
*
psz_uri
));
VLC_EXPORT
(
mtime_t
,
input_item_GetDuration
,
(
input_item_t
*
p_i
)
);
VLC_EXPORT
(
void
,
input_item_SetDuration
,
(
input_item_t
*
p_i
,
mtime_t
i_duration
));
VLC_EXPORT
(
bool
,
input_item_IsPreparsed
,
(
input_item_t
*
p_i
));
...
...
src/input/item.c
View file @
ab85aafb
...
...
@@ -331,7 +331,7 @@ char *input_item_GetURI( input_item_t *p_i )
vlc_mutex_unlock
(
&
p_i
->
lock
);
return
psz_s
;
}
void
input_item_SetURI
(
input_item_t
*
p_i
,
char
*
psz_uri
)
void
input_item_SetURI
(
input_item_t
*
p_i
,
c
onst
c
har
*
psz_uri
)
{
vlc_mutex_lock
(
&
p_i
->
lock
);
...
...
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