From 8843d281ba06613fc92711d2ea824c35502be78e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 14 Jul 2015 10:12:07 +0100 Subject: [PATCH] Fix mistaken use of wrong enum. --- src/lib/player.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/player.cc b/src/lib/player.cc index b0ba41597..ed4519aca 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -374,8 +374,8 @@ Player::get_video (DCPTime time, bool accurate) shared_ptr vc = dynamic_pointer_cast ((*i)->content); /* Use the second to last if it's the other part of a 3D content pair */ if ( - (first_type == EYES_LEFT && vc->video_frame_type() == EYES_RIGHT) || - (first_type == EYES_RIGHT && vc->video_frame_type() == EYES_LEFT) + (first_type == VIDEO_FRAME_TYPE_3D_LEFT && vc->video_frame_type() == VIDEO_FRAME_TYPE_3D_RIGHT) || + (first_type == VIDEO_FRAME_TYPE_3D_RIGHT && vc->video_frame_type() == VIDEO_FRAME_TYPE_3D_LEFT) ) { /* Other part of a pair of 3D content */ ov_to_use.push_back (*i); -- 2.30.2