
As per MP4 spec, bitrates in esds boxes can be a 32 bit number which doesn't fits in Java int type, so now reading it as a long value. Our class for holding media format, only allows bitrates value to be an int as we don't expect the bitrates to be greater than or equal to 2^31. So we're limiting the values for bitrates to Integer.MAX_VALUE. PiperOrigin-RevId: 458423162 (cherry picked from commit 21638fa3784078170af3be545316e062313a30b5)
Extractor module
Provides media container extractors and related utilities. Application code will not normally need to depend on this module directly.