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
3d8994ab
Commit
3d8994ab
authored
May 30, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ninput, access: compilation fix.
parent
22c36814
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
include/ninput.h
include/ninput.h
+3
-3
src/input/access.c
src/input/access.c
+1
-2
No files found.
include/ninput.h
View file @
3d8994ab
...
...
@@ -143,9 +143,9 @@ struct access_t
access_sys_t
*
p_sys
;
};
#define access2_New( a, b
, c, d ) __acess2_New(VLC_OBJECT(a), b, c, d
)
VLC_EXPORT
(
demux_t
*
,
__access2_New
,
(
vlc_object_t
*
p_obj
,
char
*
psz_mrl
,
stream_t
*
s
,
es_out_t
*
out
)
);
VLC_EXPORT
(
void
,
access2_Delete
,
(
demux
_t
*
)
);
#define access2_New( a, b
) __acess2_New(VLC_OBJECT(a), b
)
VLC_EXPORT
(
access_t
*
,
__access2_New
,
(
vlc_object_t
*
p_obj
,
char
*
psz_mrl
)
);
VLC_EXPORT
(
void
,
access2_Delete
,
(
access
_t
*
)
);
static
inline
int
access2_vaControl
(
access_t
*
p_access
,
int
i_query
,
va_list
args
)
{
...
...
src/input/access.c
View file @
3d8994ab
...
...
@@ -56,8 +56,7 @@ int access_vaControlDefault( input_thread_t *p_input, int i_query, va_list args
/*****************************************************************************
* access2_New:
*****************************************************************************/
access_t
*
__access2_New
(
vlc_object_t
*
p_obj
,
char
*
psz_mrl
,
stream_t
*
s
,
es_out_t
*
out
)
access_t
*
__access2_New
(
vlc_object_t
*
p_obj
,
char
*
psz_mrl
)
{
msg_Err
(
p_obj
,
"access2_New not yet implemented"
);
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