summaryrefslogtreecommitdiffstats
path: root/demux/demux.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-04 21:06:18 +0100
committerwm4 <wm4@nowhere>2014-12-04 22:42:07 +0100
commitc3d6f4b63b37994a14099e0e88e8ae87121cb7bf (patch)
treef5a9b1460132d2a6d3de28c9ed6e1beacc55cbb4 /demux/demux.h
parent6e7942af5062570694e08ee868fb9ee6004f102f (diff)
downloadmpv-c3d6f4b63b37994a14099e0e88e8ae87121cb7bf.tar.bz2
mpv-c3d6f4b63b37994a14099e0e88e8ae87121cb7bf.tar.xz
dvd, bd: don't unnecessarily block on demuxer/stream all the time
This was completely breaking any low-level caching. Change it so that at least demuxer caching will work. Do this by using the metadata cache mechanism to funnel through the menu commands. For some incomprehensible reason, I had to reorder the events (which affects their delivery priority), or they would be ignored. Probably some crap about the event state being cleared before it could be delivered. I don't give a shit. All this code sucks. It would probably be better to let discnav.c access the menu event "queue" directly, and to synchronize access with a mutex, instead of going through all the caching layers, making things complicated and slow.
Diffstat (limited to 'demux/demux.h')
-rw-r--r--demux/demux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/demux.h b/demux/demux.h
index 7892718027..39bfee7fea 100644
--- a/demux/demux.h
+++ b/demux/demux.h
@@ -55,6 +55,7 @@ enum demux_ctrl {
DEMUXER_CTRL_IDENTIFY_PROGRAM,
DEMUXER_CTRL_STREAM_CTRL,
DEMUXER_CTRL_GET_READER_STATE,
+ DEMUXER_CTRL_GET_NAV_EVENT,
};
struct demux_ctrl_reader_state {