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
1b6fc300
Commit
1b6fc300
authored
Aug 02, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: Export input_GetState().
parent
61930d9a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
include/vlc_input.h
include/vlc_input.h
+8
-2
No files found.
include/vlc_input.h
View file @
1b6fc300
...
...
@@ -535,7 +535,7 @@ static inline void vlc_input_attachment_Delete( input_attachment_t *a )
/* "state" value */
/* NOTE: you need to update ppsz_input_state in the RC interface
* if you modify this list. */
enum
input_state_e
typedef
enum
input_state_e
{
INIT_S
=
0
,
OPENING_S
,
...
...
@@ -547,7 +547,7 @@ enum input_state_e
BACKWARD_S
,
END_S
,
ERROR_S
,
};
}
input_state_e
;
/* "rate" default, min/max
* A rate below 1000 plays the movie faster,
...
...
@@ -672,6 +672,12 @@ enum input_query_e
VLC_EXPORT
(
int
,
input_vaControl
,(
input_thread_t
*
,
int
i_query
,
va_list
)
);
VLC_EXPORT
(
int
,
input_Control
,
(
input_thread_t
*
,
int
i_query
,
...
)
);
static
inline
input_state_e
input_GetState
(
input_thread_t
*
p_input
)
{
input_state_e
state
=
INIT_S
;
input_Control
(
p_input
,
INPUT_GET_STATE
,
&
state
);
return
state
;
}
VLC_EXPORT
(
decoder_t
*
,
input_DecoderNew
,
(
input_thread_t
*
,
es_format_t
*
,
bool
b_force_decoder
)
);
VLC_EXPORT
(
void
,
input_DecoderDelete
,
(
decoder_t
*
)
);
VLC_EXPORT
(
void
,
input_DecoderDecode
,(
decoder_t
*
,
block_t
*
)
);
...
...
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