Lines Matching refs:s3d_struct
542 * 0 is a valid value for s3d_struct, so we use a special "not set"
545 frame->s3d_struct = HDMI_3D_STRUCTURE_INVALID;
555 if (frame->s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
557 else if (frame->vic != 0 || frame->s3d_struct != HDMI_3D_STRUCTURE_INVALID)
571 if (frame->vic != 0 && frame->s3d_struct != HDMI_3D_STRUCTURE_INVALID)
639 if (frame->s3d_struct != HDMI_3D_STRUCTURE_INVALID) {
641 ptr[8] = (frame->s3d_struct & 0xf) << 4;
642 if (frame->s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1495 hdmi_3d_structure_get_name(enum hdmi_3d_structure s3d_struct)
1497 if (s3d_struct < 0 || s3d_struct > 0xf)
1500 switch (s3d_struct) {
1537 if (hvf->vic == 0 && hvf->s3d_struct == HDMI_3D_STRUCTURE_INVALID) {
1544 if (hvf->s3d_struct != HDMI_3D_STRUCTURE_INVALID) {
1546 hdmi_3d_structure_get_name(hvf->s3d_struct));
1547 if (hvf->s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1801 hvf->s3d_struct = ptr[4] >> 4;
1802 if (hvf->s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF) {