diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-05-13 10:15:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-05-13 10:15:26 +0100 |
| commit | 9922c1f2eaea674ba2ff6cce5f5853655fd8ad7a (patch) | |
| tree | 9427c2cb655f8788c31bb5410d70451d11ae3665 /src/lib/image_decoder.h | |
| parent | 83e5567530d0be24490abdda46d196e4279c5030 (diff) | |
Don't bother decoding video frames when we're seeking around trying to find subtitles.
Diffstat (limited to 'src/lib/image_decoder.h')
| -rw-r--r-- | src/lib/image_decoder.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/image_decoder.h b/src/lib/image_decoder.h index 242f69477..ec90051da 100644 --- a/src/lib/image_decoder.h +++ b/src/lib/image_decoder.h @@ -34,10 +34,9 @@ public: return _image_content; } - void seek (ContentTime, bool); - private: - bool pass (); + bool pass (PassReason); + void seek (ContentTime, bool); boost::shared_ptr<const ImageContent> _image_content; boost::shared_ptr<ImageProxy> _image; |
