media/testdata
ibaker ae0d9b1359 Preserve limit when resetting ParsableByteArray in OggPacket#populate
When I moved ParsableByteArray#data behind a getter I replaced some
assignments with calls to reset(byte[]):
ce2e6e2fd6

reset(byte[]) deliberately sets `limit` to `data.length`, in order to
handle cases that were reassigning `data` but not updating `limit`.
However OggPacket was already using `limit` to track where to write
'new' data into the array, so changing `limit` to `data.length` caused
us to try and write new data beyond the end of the array.

I looked at other uses of reset(byte[]) in ce2e6e2fd6
and condluded the only other usage in MatroskaExtractor is legit and
shouldn't be updated like this (because MatroskaExtractor previously
*wasn't* correctly updating/maintaining `limit`).

Issue: #7992
PiperOrigin-RevId: 334601586
2020-10-06 14:30:01 +01:00
..
src Preserve limit when resetting ParsableByteArray in OggPacket#populate 2020-10-06 14:30:01 +01:00
build.gradle Move common gradle setup to a setting file. 2020-06-26 11:13:25 +01:00
README.md Create testdata module 2020-02-11 17:08:45 +00:00

ExoPlayer test data

Provides sample data for ExoPlayer unit and instrumentation tests.