
Also remove intermediate object allocations in `Util.toByteArray(int...)`. `Util.toByteArray(InputStream)` is kept (but deprecated) because it's been part of the library for a while and might be in use by some apps. The others are much newer, so the chance of usages outside the library is very low, so we just remove them directly. PiperOrigin-RevId: 613878453
Container module
Provides functionality for media containers.
Getting the module
The easiest way to get the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-container:1.X.X'
where 1.X.X
is the version, which must match the version of the other media
modules being used.
Alternatively, you can clone this GitHub project and depend on the module locally. Instructions for doing this can be found in the top level README.