]> git.sesse.net Git - vlc/blobdiff - src/audio_output/common.c
Remove unused aout_FifoFirstDate() and aout_FifoNextStart()
[vlc] / src / audio_output / common.c
index 475cb631c844379f981765d5f8225c1e7f69b1e6..560be141961710e01fd246b2443375585f17666b 100644 (file)
@@ -397,24 +397,6 @@ void aout_FifoMoveDates( aout_fifo_t *fifo, mtime_t 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
  *****************************************************************************/