summaryrefslogtreecommitdiff
path: root/src/lib/decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-18 21:13:10 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-18 21:13:10 +0000
commit0330d9b2924767d9240c5a25e9ed4327eb0a73bd (patch)
treec0041d4d64b6cc6b1dc57fd12e23b5ca552197c1 /src/lib/decoder.h
parent880719c0bf2f2ce99ca44a5f5289fdd30962246a (diff)
Try to tidy up subtitle timing and seeks wrt source frames, DCP frames and rounding.
Diffstat (limited to 'src/lib/decoder.h')
-rw-r--r--src/lib/decoder.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h
index b8278ff80..3908afa2f 100644
--- a/src/lib/decoder.h
+++ b/src/lib/decoder.h
@@ -58,10 +58,8 @@ public:
virtual ~Decoder () {}
virtual bool pass () = 0;
- /** Seek.
- * @return true on error.
- */
- virtual bool seek (SourceFrame);
+ virtual bool seek (double);
+ virtual bool seek_to_last ();
boost::signals2::signal<void()> OutputChanged;