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
02752c7c
Commit
02752c7c
authored
Feb 21, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3 vilains fichiers avaient disparu
parent
0374d333
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
0 deletions
+48
-0
src/audio_output/audio_sys.h
src/audio_output/audio_sys.h
+21
-0
src/interface/intf_sys.h
src/interface/intf_sys.h
+12
-0
src/video_output/video_sys.h
src/video_output/video_sys.h
+15
-0
No files found.
src/audio_output/audio_sys.h
0 → 100644
View file @
02752c7c
/*****************************************************************************
* audio_sys.h : header of the method-dependant functions library
* (c)1999 VideoLAN
*****************************************************************************
* Required headers:
* - "common.h" ( byte_t )
* - "audio_output.h" ( aout_dsp_t )
*****************************************************************************/
/*****************************************************************************
* Prototypes
*****************************************************************************/
int
aout_SysOpen
(
aout_thread_t
*
p_aout
);
int
aout_SysReset
(
aout_thread_t
*
p_aout
);
int
aout_SysSetFormat
(
aout_thread_t
*
p_aout
);
int
aout_SysSetChannels
(
aout_thread_t
*
p_aout
);
int
aout_SysSetRate
(
aout_thread_t
*
p_aout
);
long
aout_SysGetBufInfo
(
aout_thread_t
*
p_aout
,
long
l_buffer_info
);
void
aout_SysPlaySamples
(
aout_thread_t
*
p_aout
,
byte_t
*
buffer
,
int
i_size
);
void
aout_SysClose
(
aout_thread_t
*
p_aout
);
src/interface/intf_sys.h
0 → 100644
View file @
02752c7c
/*****************************************************************************
* intf_sys.h: system dependant interface API
* (c)1999 VideoLAN
*****************************************************************************/
/*****************************************************************************
* Prototypes
*****************************************************************************/
int
intf_SysCreate
(
p_intf_thread_t
p_intf
);
void
intf_SysDestroy
(
p_intf_thread_t
p_intf
);
void
intf_SysManage
(
p_intf_thread_t
p_intf
);
src/video_output/video_sys.h
0 → 100644
View file @
02752c7c
/*****************************************************************************
* video_sys.h: system dependant video output display method API
* (c)1999 VideoLAN
*****************************************************************************/
/*****************************************************************************
* Prototypes
*****************************************************************************/
int
vout_SysCreate
(
p_vout_thread_t
p_vout
,
char
*
psz_display
,
int
i_root_window
);
int
vout_SysInit
(
p_vout_thread_t
p_vout
);
void
vout_SysEnd
(
p_vout_thread_t
p_vout
);
void
vout_SysDestroy
(
p_vout_thread_t
p_vout
);
int
vout_SysManage
(
p_vout_thread_t
p_vout
);
void
vout_SysDisplay
(
p_vout_thread_t
p_vout
);
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