diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-22 00:20:29 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-22 00:20:29 +0100 |
| commit | 11c70b0e3051517e7bb96a7d6fa53053dab6e978 (patch) | |
| tree | 83a40cd91bb9ec4a276026d2ea936144c832d04b /src/lib/decoder.cc | |
| parent | 62c15e24fcaa54a936b0e86cacce07616fea8c8e (diff) | |
Half-way through trying to make seek work again.
Diffstat (limited to 'src/lib/decoder.cc')
| -rw-r--r-- | src/lib/decoder.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc index 082ad5076..2308bbd98 100644 --- a/src/lib/decoder.cc +++ b/src/lib/decoder.cc @@ -41,11 +41,9 @@ Decoder::Decoder (shared_ptr<const Film> f) _film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1)); } -/** Seek to a position as a content timestamp in seconds. - * @return true on error. - */ +/** @return true on error */ bool -Decoder::seek (double) +Decoder::seek (Time) { throw DecodeError (N_("decoder does not support seek")); } |
