From e6e3bc7cd97e7dc27d91bbf89902191b4408cb40 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 16 Aug 2014 17:07:32 +0200 Subject: demux: remove unused function --- demux/demux.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'demux/demux.c') diff --git a/demux/demux.c b/demux/demux.c index 56a147e3bd..5918da51a9 100644 --- a/demux/demux.c +++ b/demux/demux.c @@ -558,18 +558,6 @@ bool demux_has_packet(struct sh_stream *sh) return has_packet; } -// Return whether EOF was returned with an earlier packet read. -bool demux_stream_eof(struct sh_stream *sh) -{ - bool eof = false; - if (sh) { - pthread_mutex_lock(&sh->ds->in->lock); - eof = sh->ds->eof && !sh->ds->head; - pthread_mutex_unlock(&sh->ds->in->lock); - } - return eof; -} - // Read and return any packet we find. struct demux_packet *demux_read_any_packet(struct demuxer *demuxer) { -- cgit v1.2.3