mirror of
https://github.com/mpv-player/mpv
synced 2025-04-04 23:40:47 +00:00
demux: another unused function
This commit is contained in:
parent
475f61710e
commit
ca142be7e8
@ -1972,18 +1972,6 @@ int demux_read_packet_async(struct sh_stream *sh, struct demux_packet **out_pkt)
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return whether a packet is queued. Never blocks, never forces any reads.
|
|
||||||
bool demux_has_packet(struct sh_stream *sh)
|
|
||||||
{
|
|
||||||
bool has_packet = false;
|
|
||||||
if (sh) {
|
|
||||||
pthread_mutex_lock(&sh->ds->in->lock);
|
|
||||||
has_packet = sh->ds->reader_head;
|
|
||||||
pthread_mutex_unlock(&sh->ds->in->lock);
|
|
||||||
}
|
|
||||||
return has_packet;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read and return any packet we find. NULL means EOF.
|
// Read and return any packet we find. NULL means EOF.
|
||||||
struct demux_packet *demux_read_any_packet(struct demuxer *demuxer)
|
struct demux_packet *demux_read_any_packet(struct demuxer *demuxer)
|
||||||
{
|
{
|
||||||
|
@ -244,7 +244,6 @@ void demuxer_feed_caption(struct sh_stream *stream, demux_packet_t *dp);
|
|||||||
struct demux_packet *demux_read_packet(struct sh_stream *sh);
|
struct demux_packet *demux_read_packet(struct sh_stream *sh);
|
||||||
int demux_read_packet_async(struct sh_stream *sh, struct demux_packet **out_pkt);
|
int demux_read_packet_async(struct sh_stream *sh, struct demux_packet **out_pkt);
|
||||||
bool demux_stream_is_selected(struct sh_stream *stream);
|
bool demux_stream_is_selected(struct sh_stream *stream);
|
||||||
bool demux_has_packet(struct sh_stream *sh);
|
|
||||||
void demux_set_stream_wakeup_cb(struct sh_stream *sh,
|
void demux_set_stream_wakeup_cb(struct sh_stream *sh,
|
||||||
void (*cb)(void *ctx), void *ctx);
|
void (*cb)(void *ctx), void *ctx);
|
||||||
struct demux_packet *demux_read_any_packet(struct demuxer *demuxer);
|
struct demux_packet *demux_read_any_packet(struct demuxer *demuxer);
|
||||||
|
Loading…
Reference in New Issue
Block a user