diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-19 20:40:36 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-19 20:40:36 +0000 |
| commit | f113b2aaca7a65f7b37e12a7d9f3f99e2d834e81 (patch) | |
| tree | 6ea2ed1d480304a4aaf512e380cd013bbf42e86c /src/lib/decoder.cc | |
| parent | fab7fa5a9ef1d069c7ca32e3669d0e37e896250c (diff) | |
Move position variables into the video/audio/subtitle decoder classes.
Diffstat (limited to 'src/lib/decoder.cc')
| -rw-r--r-- | src/lib/decoder.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 50356da78..988b8fe9b 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -40,21 +40,3 @@ Decoder::maybe_seek (optional<ContentTime>& position, ContentTime time, bool acc position.reset (); seek (time, accurate); } - -void -Decoder::maybe_seek_video (ContentTime time, bool accurate) -{ - maybe_seek (_video_position, time, accurate); -} - -void -Decoder::maybe_seek_audio (ContentTime time, bool accurate) -{ - maybe_seek (_audio_position, time, accurate); -} - -void -Decoder::maybe_seek_subtitle (ContentTime time, bool accurate) -{ - maybe_seek (_subtitle_position, time, accurate); -} |
