Move some methods out of util.{cc,h}
[dcpomatic.git] / src / lib / player.cc
index 40f726d107b716f7f51606e0e28f93a07f351cc9..c7dd83d6daa152a47ad294ffcf80bf077059589d 100644 (file)
@@ -932,6 +932,18 @@ Player::open_subtitles_for_frame (DCPTime time) const
 }
 
 
+static
+Eyes
+increment_eyes (Eyes e)
+{
+       if (e == Eyes::LEFT) {
+               return Eyes::RIGHT;
+       }
+
+       return Eyes::LEFT;
+}
+
+
 void
 Player::video (weak_ptr<Piece> weak_piece, ContentVideo video)
 {