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

Commit e74de52d authored by James Dong's avatar James Dong Committed by Android (Google) Code Review
Browse files

Merge "DO NOT MERGE - Consider I-Frame at zeroeth position when searching for...

Merge "DO NOT MERGE - Consider I-Frame at zeroeth position when searching for sync frames" into ics-mr1
parents f7b5cdd4 223e70d6
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -627,6 +627,14 @@ status_t SampleTable::findSyncSampleNear(

        ++left;
    }

    if (left == mNumSyncSamples) {
        if (flags == kFlagAfter) {
            LOGE("tried to find a sync frame after the last one: %d", left);
            return ERROR_OUT_OF_RANGE;
        }
    }

    if (left > 0) {
        --left;
    }