Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e02eee1a authored by Chih-Chung Chang's avatar Chih-Chung Chang
Browse files

Fix 5240036: We didn't handle the 1920x1080 resolution.

Change-Id: Id48c7db085bb73625acad365e0a036c8e45567dc
parent e9eec0e0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -940,8 +940,14 @@ M4OSA_ERR M4VSS3GPP_editOpen( M4VSS3GPP_EditContext pContext,
            pC->ewc.uiVideoWidth = 960;
            pC->ewc.uiVideoHeight = 720;
            break;
        case M4VIDEOEDITING_k1920_1080:
            pC->ewc.uiVideoWidth = 1920;
            pC->ewc.uiVideoHeight = 1088; // need to be multiples of 16
            break;

        default: /* If output video size is not given, we take QCIF size */
            M4OSA_TRACE1_0(
                "M4VSS3GPP_editOpen: no output video size given, default to QCIF!");
            pC->ewc.uiVideoWidth = 176;
            pC->ewc.uiVideoHeight = 144;
            pC->xVSS.outputVideoSize = M4VIDEOEDITING_kQCIF;