Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
75885ca5
Commit
75885ca5
authored
Jan 19, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. dernier fichier n�cessaire � la compilation du subtitle decoder
parent
edca9928
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
0 deletions
+39
-0
include/subtitle_decoder.h
include/subtitle_decoder.h
+39
-0
No files found.
include/subtitle_decoder.h
0 → 100644
View file @
75885ca5
/******************************************************************************
* subtitle_decoder.h : subtitle decoder thread interface
* (c)1999 VideoLAN
******************************************************************************/
/******************************************************************************
* subtdec_thread_t : subtitle decoder thread descriptor
******************************************************************************/
typedef
struct
subtdec_thread_s
{
/*
* Thread properties and locks
*/
boolean_t
b_die
;
/* `die' flag */
boolean_t
b_run
;
/* `run' flag */
boolean_t
b_active
;
/* `active' flag */
boolean_t
b_error
;
/* `error' flag */
vlc_thread_t
thread_id
;
/* id for thread functions */
/*
* Input properties
*/
decoder_fifo_t
fifo
;
/* stores the PES stream data */
/* The bit stream structure handles the PES stream at the bit level */
bit_stream_t
bit_stream
;
/*
* Decoder properties
*/
unsigned
int
total_bits_read
;
/* ... */
}
subtdec_thread_t
;
/******************************************************************************
* Prototypes
******************************************************************************/
subtdec_thread_t
*
subtdec_CreateThread
(
input_thread_t
*
p_input
);
void
subtdec_DestroyThread
(
subtdec_thread_t
*
p_subtdec
);
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