intel_infoframes: Be future-proof about showing 3D_Ext_Data

As Ville noted, future 3D_Struct must also send 3D_Ext_Data in the
vendor infoframe.

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
This commit is contained in:
Damien Lespiau 2013-08-20 14:20:06 +01:00
parent b5acc1061a
commit 5b791671ad

View File

@ -493,7 +493,7 @@ static void dump_vendor_hdmi(DipInfoFrame *frame)
s3d_structure_to_string(s3d_structure)); s3d_structure_to_string(s3d_structure));
/* Side-by-side (half) */ /* Side-by-side (half) */
if (s3d_structure == 8) if (s3d_structure >= 8)
printf("- 3D Ext Data 0x%x\n", printf("- 3D Ext Data 0x%x\n",
frame->vendor.s3d_ext_data); frame->vendor.s3d_ext_data);
} }