
When converting NAL units from AnnexB to Avcc format, one byte at a time was read. In fact many bytes were read multiple times due to suboptimal logic. Changed the logic to read 4 bytes at once and also to avoid reading same bytes again. This improved the time taken for writing a batch of 30 samples from 40ms to 20ms. PiperOrigin-RevId: 673025781
Muxer module
Provides functionality for producing media container files.
Getting the module
The easiest way to get the module is to add it as a gradle dependency:
implementation 'androidx.media3:media3-muxer: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.