Skip to content

Commit

Permalink
squash: fix dependency of framepacking on mvc
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Jun 30, 2015
1 parent 0b33de2 commit f21d055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/egl/EGLNativeTypeRaspberryPI.cpp
Expand Up @@ -287,7 +287,7 @@ bool CEGLNativeTypeRaspberryPI::SetNativeResolution(const RESOLUTION_INFO &res)
/* inform TV of any 3D settings. Note this property just applies to next hdmi mode change, so no need to call for 2D modes */
HDMI_PROPERTY_PARAM_T property;
property.property = HDMI_PROPERTY_3D_STRUCTURE;
if (CSettings::Get().GetBool("videoplayer.framepacking"))
if (CSettings::Get().GetBool("videoplayer.framepacking") && CSettings::Get().GetBool("videoplayer.supportmvc"))
property.param1 = HDMI_3D_FORMAT_FRAME_PACKING;
else if (stereo_mode == RENDER_STEREO_MODE_SPLIT_VERTICAL)
property.param1 = HDMI_3D_FORMAT_SBS_HALF;
Expand Down

0 comments on commit f21d055

Please sign in to comment.