demux: remove unused function

This commit is contained in:
wm4 2014-08-16 17:07:32 +02:00
parent 14c1d864d9
commit e6e3bc7cd9
2 changed files with 0 additions and 13 deletions

View File

@ -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)
{

View File

@ -239,7 +239,6 @@ int demux_read_packet_async(struct sh_stream *sh, struct demux_packet **out_pkt)
bool demux_stream_is_selected(struct sh_stream *stream);
double demux_get_next_pts(struct sh_stream *sh);
bool demux_has_packet(struct sh_stream *sh);
bool demux_stream_eof(struct sh_stream *sh);
struct demux_packet *demux_read_any_packet(struct demuxer *demuxer);
struct sh_stream *new_sh_stream(struct demuxer *demuxer, enum stream_type type);