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
269297b0
Commit
269297b0
authored
Dec 05, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: export get_path from access.c
parent
76425f76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/input/access.c
src/input/access.c
+1
-1
src/input/access.h
src/input/access.h
+2
-0
No files found.
src/input/access.c
View file @
269297b0
...
...
@@ -31,7 +31,7 @@
#include <vlc_modules.h>
/* Decode URL (which has had its scheme stripped earlier) to a file path. */
static
char
*
get_path
(
const
char
*
location
)
char
*
get_path
(
const
char
*
location
)
{
char
*
url
,
*
path
;
...
...
src/input/access.h
View file @
269297b0
...
...
@@ -34,5 +34,7 @@ access_t *access_New( vlc_object_t *p_obj, input_thread_t *p_input,
#define access_New( a, b, c, d, e ) access_New(VLC_OBJECT(a), b, c, d, e )
void
access_Delete
(
access_t
*
);
char
*
get_path
(
const
char
*
location
);
#endif
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