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
4f6fae71
Commit
4f6fae71
authored
Aug 04, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport aout_FifoPop() and aout_FifoPush()
parent
d36bd533
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
include/vlc_aout.h
include/vlc_aout.h
+0
-3
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+3
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-2
No files found.
include/vlc_aout.h
View file @
4f6fae71
...
@@ -241,9 +241,6 @@ VLC_API void aout_FormatPrepare( audio_sample_format_t * p_format );
...
@@ -241,9 +241,6 @@ VLC_API void aout_FormatPrepare( audio_sample_format_t * p_format );
VLC_API
void
aout_FormatPrint
(
audio_output_t
*
p_aout
,
const
char
*
psz_text
,
const
audio_sample_format_t
*
p_format
);
VLC_API
void
aout_FormatPrint
(
audio_output_t
*
p_aout
,
const
char
*
psz_text
,
const
audio_sample_format_t
*
p_format
);
VLC_API
const
char
*
aout_FormatPrintChannels
(
const
audio_sample_format_t
*
)
VLC_USED
;
VLC_API
const
char
*
aout_FormatPrintChannels
(
const
audio_sample_format_t
*
)
VLC_USED
;
VLC_API
aout_buffer_t
*
aout_FifoPop
(
aout_fifo_t
*
p_fifo
)
VLC_USED
;
VLC_API
void
aout_FifoPush
(
aout_fifo_t
*
,
block_t
*
);
VLC_API
void
aout_VolumeNoneInit
(
audio_output_t
*
);
VLC_API
void
aout_VolumeNoneInit
(
audio_output_t
*
);
VLC_API
void
aout_VolumeSoftInit
(
audio_output_t
*
);
VLC_API
void
aout_VolumeSoftInit
(
audio_output_t
*
);
VLC_API
void
aout_VolumeHardInit
(
audio_output_t
*
,
aout_volume_cb
);
VLC_API
void
aout_VolumeHardInit
(
audio_output_t
*
,
aout_volume_cb
);
...
...
src/audio_output/aout_internal.h
View file @
4f6fae71
...
@@ -158,8 +158,10 @@ audio_output_t *aout_New ( vlc_object_t * );
...
@@ -158,8 +158,10 @@ audio_output_t *aout_New ( vlc_object_t * );
#define aout_New(a) aout_New(VLC_OBJECT(a))
#define aout_New(a) aout_New(VLC_OBJECT(a))
void
aout_FifoInit
(
vlc_object_t
*
,
aout_fifo_t
*
,
uint32_t
);
void
aout_FifoInit
(
vlc_object_t
*
,
aout_fifo_t
*
,
uint32_t
);
mtime_t
aout_FifoFirstDate
(
const
aout_fifo_t
*
)
VLC_USED
;
#define aout_FifoInit(o, f, r) aout_FifoInit(VLC_OBJECT(o), f, r)
#define aout_FifoInit(o, f, r) aout_FifoInit(VLC_OBJECT(o), f, r)
//void aout_FifoPush( aout_fifo_t *, aout_buffer_t * );
void
aout_FifoPush
(
aout_fifo_t
*
,
aout_buffer_t
*
);
aout_buffer_t
*
aout_FifoPop
(
aout_fifo_t
*
p_fifo
)
VLC_USED
;
void
aout_FifoReset
(
aout_fifo_t
*
);
void
aout_FifoReset
(
aout_fifo_t
*
);
void
aout_FifoMoveDates
(
aout_fifo_t
*
,
mtime_t
);
void
aout_FifoMoveDates
(
aout_fifo_t
*
,
mtime_t
);
void
aout_FifoDestroy
(
aout_fifo_t
*
p_fifo
);
void
aout_FifoDestroy
(
aout_fifo_t
*
p_fifo
);
...
...
src/libvlccore.sym
View file @
4f6fae71
...
@@ -13,8 +13,6 @@ aout_ChannelsRestart
...
@@ -13,8 +13,6 @@ aout_ChannelsRestart
aout_CheckChannelExtraction
aout_CheckChannelExtraction
aout_CheckChannelReorder
aout_CheckChannelReorder
aout_EnableFilter
aout_EnableFilter
aout_FifoPop
aout_FifoPush
aout_filter_RequestVout
aout_filter_RequestVout
aout_FormatPrepare
aout_FormatPrepare
aout_FormatPrint
aout_FormatPrint
...
...
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