Bloat Libvpx |top| 90%
To the uninitiated, "bloat" might sound like an insult. In this context, it’s a technical observation. "Bloat libvpx" refers to the phenomenon where the standard compilation of the library produces a binary that is significantly larger, slower to compile, or more resource-hungry than necessary for a given use case.
Until then, if your binary is too fat, remember: It's not the codec's fault. You just compiled the reference implementation for the reference machine. Trim the flags, target your silicon, and libvpx will slim down. bloat libvpx
As a reference implementation, libvpx includes extensive code for multiple architectures (x86, ARM, MIPS) and both legacy (VP8) and modern (VP9) codecs. Including the entire library when only a specific feature is needed is a common source of bloated dependencies. To the uninitiated, "bloat" might sound like an insult
./configure --size-limit=640x480 --enable-small Until then, if your binary is too fat,