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
453764f6
Commit
453764f6
authored
Sep 25, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatize input_SplitMRL()
parent
629242be
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
10 deletions
+3
-10
include/vlc_input.h
include/vlc_input.h
+0
-9
src/input/input_internal.h
src/input/input_internal.h
+3
-0
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_input.h
View file @
453764f6
...
@@ -643,15 +643,6 @@ VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, es_format_t *, input_re
...
@@ -643,15 +643,6 @@ VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, es_format_t *, input_re
VLC_API
void
input_DecoderDelete
(
decoder_t
*
);
VLC_API
void
input_DecoderDelete
(
decoder_t
*
);
VLC_API
void
input_DecoderDecode
(
decoder_t
*
,
block_t
*
,
bool
b_do_pace
);
VLC_API
void
input_DecoderDecode
(
decoder_t
*
,
block_t
*
,
bool
b_do_pace
);
/**
* This function allows to split a MRL into access, demux and path part.
*
* You should not write into access and demux string as they may not point into
* the provided buffer.
* The buffer provided by psz_dup will be modified.
*/
VLC_API
void
input_SplitMRL
(
const
char
**
ppsz_access
,
const
char
**
ppsz_demux
,
char
**
ppsz_path
,
char
*
psz_dup
);
/**
/**
* This function creates a sane filename path.
* This function creates a sane filename path.
*/
*/
...
...
src/input/input_internal.h
View file @
453764f6
...
@@ -243,4 +243,7 @@ void input_ConfigVarInit ( input_thread_t * );
...
@@ -243,4 +243,7 @@ void input_ConfigVarInit ( input_thread_t * );
char
**
subtitles_Detect
(
input_thread_t
*
,
char
*
path
,
const
char
*
fname
);
char
**
subtitles_Detect
(
input_thread_t
*
,
char
*
path
,
const
char
*
fname
);
int
subtitles_Filter
(
const
char
*
);
int
subtitles_Filter
(
const
char
*
);
/* input.c */
void
input_SplitMRL
(
const
char
**
,
const
char
**
,
char
**
,
char
*
);
#endif
#endif
src/libvlccore.sym
View file @
453764f6
...
@@ -227,7 +227,6 @@ input_resource_New
...
@@ -227,7 +227,6 @@ input_resource_New
input_resource_Release
input_resource_Release
input_resource_TerminateVout
input_resource_TerminateVout
input_resource_Terminate
input_resource_Terminate
input_SplitMRL
input_Start
input_Start
input_Stop
input_Stop
input_vaControl
input_vaControl
...
...
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