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

Commit c69b0a34 authored by Surajit Podder's avatar Surajit Podder Committed by Steve Kondik
Browse files

video: Disable resync markers

Disable resync markers for MPEG4 and H263 encoders.
Marker spacing is already set to 0, and there are
issues with some encoders on enabling resync markers.

Change-Id: I06fa89f0d37ecf8d11b31e4b50b626466f9bb68c
parent 523b5c5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3453,7 +3453,7 @@ status_t ACodec::setupErrorCorrectionParameters() {
    }

    errorCorrectionType.bEnableHEC = OMX_FALSE;
    errorCorrectionType.bEnableResync = OMX_TRUE;
    errorCorrectionType.bEnableResync = OMX_FALSE;
    errorCorrectionType.nResynchMarkerSpacing = 0;
    errorCorrectionType.bEnableDataPartitioning = OMX_FALSE;
    errorCorrectionType.bEnableRVLC = OMX_FALSE;