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

Commit 0152b334 authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am 63b38e31: Merge "This particular RTSP server streams MPEG4-LATM audio with...

am 63b38e31: Merge "This particular RTSP server streams MPEG4-LATM audio with extra trailing bytes." into honeycomb

* commit '63b38e31aaea5a3e75c7bbe0c9e40e8bdb78ff73':
  This particular RTSP server streams MPEG4-LATM audio with extra trailing bytes.
parents 84d3a304 8ce64ddc
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -359,7 +359,10 @@ sp<ABuffer> AMPEG4AudioAssembler::removeLATMFraming(const sp<ABuffer> &buffer) {
        }
    }

    CHECK_EQ(offset, buffer->size());
    if (offset < buffer->size()) {
        LOGI("ignoring %d bytes of trailing data", buffer->size() - offset);
    }
    CHECK_LE(offset, buffer->size());

    return out;
}