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
8288876b
Commit
8288876b
authored
Oct 13, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved stream_Access* to stream.h
parent
ea83a25e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/input/input_internal.h
src/input/input_internal.h
+0
-6
src/input/stream.h
src/input/stream.h
+6
-0
No files found.
src/input/input_internal.h
View file @
8288876b
...
...
@@ -322,12 +322,6 @@ void input_ControlVarTitle( input_thread_t *, int i_title );
void
input_ConfigVarInit
(
input_thread_t
*
);
/* stream.c */
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
bool
);
void
stream_AccessDelete
(
stream_t
*
s
);
void
stream_AccessReset
(
stream_t
*
s
);
void
stream_AccessUpdate
(
stream_t
*
s
);
/* Subtitles */
char
**
subtitles_Detect
(
input_thread_t
*
,
char
*
path
,
const
char
*
fname
);
int
subtitles_Filter
(
const
char
*
);
...
...
src/input/stream.h
View file @
8288876b
...
...
@@ -61,5 +61,11 @@ static inline stream_t *vlc_stream_create( vlc_object_t *obj )
VLC_OBJECT_GENERIC
,
"stream"
);
}
/* */
stream_t
*
stream_AccessNew
(
access_t
*
p_access
,
bool
);
void
stream_AccessDelete
(
stream_t
*
s
);
void
stream_AccessReset
(
stream_t
*
s
);
void
stream_AccessUpdate
(
stream_t
*
s
);
#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