Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
92a24566
Commit
92a24566
authored
Aug 23, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ninput: fix a warning. (bad functions order)
parent
504329bb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
include/ninput.h
include/ninput.h
+11
-10
No files found.
include/ninput.h
View file @
92a24566
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ninput.h
* ninput.h
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: ninput.h,v 1.
6 2003/08/22 20:29:58
fenrir Exp $
* $Id: ninput.h,v 1.
7 2003/08/23 14:15:27
fenrir Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -47,6 +47,16 @@ enum stream_query_e
...
@@ -47,6 +47,16 @@ enum stream_query_e
STREAM_GET_SIZE
,
/**< arg1= int64_t * res=cannot fail (0 if no sense)*/
STREAM_GET_SIZE
,
/**< arg1= int64_t * res=cannot fail (0 if no sense)*/
};
};
/* Stream */
VLC_EXPORT
(
stream_t
*
,
stream_OpenInput
,
(
input_thread_t
*
)
);
VLC_EXPORT
(
void
,
stream_Release
,
(
stream_t
*
)
);
VLC_EXPORT
(
int
,
stream_vaControl
,
(
stream_t
*
,
int
i_query
,
va_list
)
);
VLC_EXPORT
(
int
,
stream_Control
,
(
stream_t
*
,
int
i_query
,
...
)
);
VLC_EXPORT
(
int
,
stream_Read
,
(
stream_t
*
,
void
*
p_read
,
int
i_read
)
);
VLC_EXPORT
(
int
,
stream_Peek
,
(
stream_t
*
,
uint8_t
**
pp_peek
,
int
i_peek
)
);
VLC_EXPORT
(
data_packet_t
*
,
stream_DataPacket
,
(
stream_t
*
,
int
i_size
,
vlc_bool_t
b_force
)
);
VLC_EXPORT
(
pes_packet_t
*
,
stream_PesPacket
,
(
stream_t
*
,
int
i_size
)
);
static
int64_t
inline
stream_Tell
(
stream_t
*
s
)
static
int64_t
inline
stream_Tell
(
stream_t
*
s
)
{
{
int64_t
i_pos
;
int64_t
i_pos
;
...
@@ -67,15 +77,6 @@ static int inline stream_Seek( stream_t *s, int64_t i_pos )
...
@@ -67,15 +77,6 @@ static int inline stream_Seek( stream_t *s, int64_t i_pos )
}
}
/* Stream */
VLC_EXPORT
(
stream_t
*
,
stream_OpenInput
,
(
input_thread_t
*
)
);
VLC_EXPORT
(
void
,
stream_Release
,
(
stream_t
*
)
);
VLC_EXPORT
(
int
,
stream_vaControl
,
(
stream_t
*
,
int
i_query
,
va_list
)
);
VLC_EXPORT
(
int
,
stream_Control
,
(
stream_t
*
,
int
i_query
,
...
)
);
VLC_EXPORT
(
int
,
stream_Read
,
(
stream_t
*
,
void
*
p_read
,
int
i_read
)
);
VLC_EXPORT
(
int
,
stream_Peek
,
(
stream_t
*
,
uint8_t
**
pp_peek
,
int
i_peek
)
);
VLC_EXPORT
(
data_packet_t
*
,
stream_DataPacket
,
(
stream_t
*
,
int
i_size
,
vlc_bool_t
b_force
)
);
VLC_EXPORT
(
pes_packet_t
*
,
stream_PesPacket
,
(
stream_t
*
,
int
i_size
)
);
/**
/**
* @}
* @}
*/
*/
...
...
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