summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demuxer.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-30 16:43:31 +0200
committerwm4 <wm4@nowhere>2012-09-18 21:04:45 +0200
commitd21b109bf7d3f36c13298d794c856eff834946c3 (patch)
tree86e8bfcdcc61aa75af10402e6b921bc5ad21224a /libmpdemux/demuxer.c
parentfbc424ef35d4c76235feb3aa8295bcb8a3ce9443 (diff)
downloadmpv-d21b109bf7d3f36c13298d794c856eff834946c3.tar.bz2
mpv-d21b109bf7d3f36c13298d794c856eff834946c3.tar.xz
core: fix DVD subtitle selection
Add all subtitle tracks as reported by libdvdread at playback start. Display language for subtitle and audio tracks. This commit restores these features to the state when demux_mpg was default for DVD playback, and makes them work with demux_lavf and the recent changes to subtitle selection in the frontend. demux_mpg, which was the default demuxer for DVD playback, reordered the subtitle streams according to the "logical" subtitle track number, which conforms to the track layout reported by libdvdread, and is what stream_dvd expects for the STREAM_CTRL_GET_LANG call. demux_lavf, on the other hand, adds the streams in the order it encounters them in the MPEG stream. It seems this order is essentially random, and can't be mapped easily to what stream_dvd expects. Solve this by making demux_lavf hand out the MPEG stream IDs (using the demuxer_id field). The MPEG IDs are mapped by mplayer.c by special casing DVD playback (map_id_from/to_demuxer() functions). This mapping is essentially the same what demux_mpg did. Making demux_lavf reorder the streams is out of the question, because its stream handling is already messy enough. (Note that demux_lavf doesn't export stream IDs for other formats, because most time libavformat demuxers do not set AVStream.id, and we don't know which demuxers do. But we know that MPEG is safe.) Another major complication is that subtitle tracks are added lazily, as soon as the demuxer encounters the first subtitle packet for a given subtitle stream. Add the streams in advance. If a yet non-existent stream is selected, demux_lavf must be made to auto-select that subtitle stream as soon as it is added. Otherwise, the first subtitle packet would be lost. This is done by DEMUXER_CTRL_PRESELECT_SUBTITLE. demux_mpg didn't need this: the frontend code could just set ds->id to the desired stream number. But demux_lavf's stream IDs don't map directly to the stream number as used by libdvdread, which is why this hack is needed.
Diffstat (limited to 'libmpdemux/demuxer.c')
-rw-r--r--libmpdemux/demuxer.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libmpdemux/demuxer.c b/libmpdemux/demuxer.c
index 798f701305..ce425751f9 100644
--- a/libmpdemux/demuxer.c
+++ b/libmpdemux/demuxer.c
@@ -1369,16 +1369,3 @@ int demuxer_set_angle(demuxer_t *demuxer, int angle)
return angle;
}
-
-char *demuxer_stream_lang(demuxer_t *d, struct sh_stream *sh)
-{
- struct stream_lang_req req = { .id = sh->tid }; // assume 1:1 mapping
- switch (sh->type) {
- case STREAM_AUDIO: req.type = stream_ctrl_audio; break;
- case STREAM_SUB: req.type = stream_ctrl_sub; break;
- default: return NULL;
- }
- if (stream_control(d->stream, STREAM_CTRL_GET_LANG, &req) == STREAM_OK)
- return req.name;
- return NULL;
-}