summaryrefslogtreecommitdiff
path: root/src/lib/video_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-17 23:00:12 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-17 23:00:12 +0100
commitd184945d41ea7d6e489621dc6492a93b5d91f7de (patch)
treed464fc4d700a2bee193ea0d0bf584700af07e692 /src/lib/video_decoder.h
parent59dd3e3f06efb6249c1e4105ca746f877bc8ca93 (diff)
Do filling correctly for separate-content L/R 3D; before it was
trying to fill each individual piece of content as if it was providing both L and R frames.
Diffstat (limited to 'src/lib/video_decoder.h')
-rw-r--r--src/lib/video_decoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h
index 5266604c5..42cfc4906 100644
--- a/src/lib/video_decoder.h
+++ b/src/lib/video_decoder.h
@@ -62,8 +62,8 @@ protected:
void seek (ContentTime time, bool accurate);
void video (boost::shared_ptr<const ImageProxy>, Frame frame);
std::list<ContentVideo> decoded_video (Frame frame);
- void fill_2d (Frame from, Frame to);
- void fill_3d (Frame from, Frame to, Eyes);
+ void fill_one_eye (Frame from, Frame to, Eyes);
+ void fill_both_eyes (Frame from, Frame to, Eyes);
boost::shared_ptr<const VideoContent> _video_content;
std::list<ContentVideo> _decoded_video;