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

Commit 6a548e91 authored by Robert Shih's avatar Robert Shih Committed by Android (Google) Code Review
Browse files

Merge "PlaylistFetcher: do not reset mStartTimeUs if we are resuming" into lmp-dev

parents 90073050 0f9a3cf9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -490,11 +490,11 @@ status_t PlaylistFetcher::onStart(const sp<AMessage> &msg) {

    mStreamTypeMask = streamTypeMask;

    mStartTimeUs = startTimeUs;
    mSegmentStartTimeUs = segmentStartTimeUs;
    mDiscontinuitySeq = startDiscontinuitySeq;

    if (mStartTimeUs >= 0ll) {
    if (startTimeUs >= 0) {
        mStartTimeUs = startTimeUs;
        mSeqNumber = -1;
        mStartup = true;
        mPrepared = false;