diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-19 00:31:37 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-19 00:51:05 +0000 |
| commit | 24e890682b3f2aa211277ad8b6b3591f2026d4be (patch) | |
| tree | b3b8b23c295e1efc1846c0a37088773da97606f8 /src/lib/dcp_subtitle_decoder.cc | |
| parent | 5d6e2ffca8e4b0d587eff8723716003a6d81be47 (diff) | |
Cope with offsets between video/audio/subtitle data in a muxed file.
Diffstat (limited to 'src/lib/dcp_subtitle_decoder.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc index d4e1a7fa2..c67133012 100644 --- a/src/lib/dcp_subtitle_decoder.cc +++ b/src/lib/dcp_subtitle_decoder.cc @@ -79,7 +79,7 @@ DCPSubtitleDecoder::pass (PassReason, bool) } subtitle->give_text (p, s); - _position = p.from; + _subtitle_position = p.from; return false; } |
