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
d36bd533
Commit
d36bd533
authored
Aug 04, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused aout_FifoFirstDate() and aout_FifoNextStart()
parent
297aefb7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
21 deletions
+0
-21
include/vlc_aout.h
include/vlc_aout.h
+0
-1
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+0
-1
src/audio_output/common.c
src/audio_output/common.c
+0
-18
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_aout.h
View file @
d36bd533
...
@@ -241,7 +241,6 @@ VLC_API void aout_FormatPrepare( audio_sample_format_t * p_format );
...
@@ -241,7 +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
mtime_t
aout_FifoFirstDate
(
const
aout_fifo_t
*
)
VLC_USED
;
VLC_API
aout_buffer_t
*
aout_FifoPop
(
aout_fifo_t
*
p_fifo
)
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_FifoPush
(
aout_fifo_t
*
,
block_t
*
);
...
...
src/audio_output/aout_internal.h
View file @
d36bd533
...
@@ -159,7 +159,6 @@ audio_output_t *aout_New ( vlc_object_t * );
...
@@ -159,7 +159,6 @@ audio_output_t *aout_New ( vlc_object_t * );
void
aout_FifoInit
(
vlc_object_t
*
,
aout_fifo_t
*
,
uint32_t
);
void
aout_FifoInit
(
vlc_object_t
*
,
aout_fifo_t
*
,
uint32_t
);
#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)
mtime_t
aout_FifoNextStart
(
const
aout_fifo_t
*
)
VLC_USED
;
//void aout_FifoPush( aout_fifo_t *, aout_buffer_t * );
//void aout_FifoPush( aout_fifo_t *, aout_buffer_t * );
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
);
...
...
src/audio_output/common.c
View file @
d36bd533
...
@@ -397,24 +397,6 @@ void aout_FifoMoveDates( aout_fifo_t *fifo, mtime_t difference )
...
@@ -397,24 +397,6 @@ void aout_FifoMoveDates( aout_fifo_t *fifo, mtime_t difference )
block
->
i_pts
+=
difference
;
block
->
i_pts
+=
difference
;
}
}
/*****************************************************************************
* aout_FifoNextStart : return the current end_date
*****************************************************************************/
mtime_t
aout_FifoNextStart
(
const
aout_fifo_t
*
p_fifo
)
{
return
date_Get
(
&
p_fifo
->
end_date
);
}
/*****************************************************************************
* aout_FifoFirstDate : return the playing date of the first buffer in the
* FIFO
*****************************************************************************/
mtime_t
aout_FifoFirstDate
(
const
aout_fifo_t
*
fifo
)
{
block_t
*
first
=
fifo
->
p_first
;
return
(
first
!=
NULL
)
?
first
->
i_pts
:
VLC_TS_INVALID
;
}
/*****************************************************************************
/*****************************************************************************
* aout_FifoPop : get the next buffer out of the FIFO
* aout_FifoPop : get the next buffer out of the FIFO
*****************************************************************************/
*****************************************************************************/
...
...
src/libvlccore.sym
View file @
d36bd533
...
@@ -13,7 +13,6 @@ aout_ChannelsRestart
...
@@ -13,7 +13,6 @@ aout_ChannelsRestart
aout_CheckChannelExtraction
aout_CheckChannelExtraction
aout_CheckChannelReorder
aout_CheckChannelReorder
aout_EnableFilter
aout_EnableFilter
aout_FifoFirstDate
aout_FifoPop
aout_FifoPop
aout_FifoPush
aout_FifoPush
aout_filter_RequestVout
aout_filter_RequestVout
...
...
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