diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-07 19:07:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-07 19:07:35 +0000 |
| commit | 978be856218cc15f059b7e267811e7302c37b24d (patch) | |
| tree | 41b97f950dbc5c30953abe4e98ca5053bdff73bc /src/lib/decoded.h | |
| parent | ae0e45e03ab168de0d291cfa1520beedd6a0a899 (diff) | |
Remove template from TimedAudioBuffers; a couple of small fixes.
Diffstat (limited to 'src/lib/decoded.h')
| -rw-r--r-- | src/lib/decoded.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/decoded.h b/src/lib/decoded.h index 30fe89988..ebf4e57c1 100644 --- a/src/lib/decoded.h +++ b/src/lib/decoded.h @@ -121,8 +121,8 @@ public: /* Assuming that all subs are at the same time */ DecodedTextSubtitle (std::list<dcp::SubtitleString> s) - : Decoded (ContentTime::from_seconds (subs.front().in().to_ticks() * 4 / 1000.0)) - , content_time_to (ContentTime::from_seconds (subs.front().out().to_ticks() * 4 / 1000.0)) + : Decoded (ContentTime::from_seconds (s.front().in().to_ticks() * 4 / 1000.0)) + , content_time_to (ContentTime::from_seconds (s.front().out().to_ticks() * 4 / 1000.0)) , subs (s) { |
