mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

* Before this CL, the texture was stored during the construction of the LUT processor. This failed since if one creates a list of GlEffects on the application thread, the texture will get stored in the application thread during the effect creation and not on the GL thread, which executes the FrameProcessors. * This is an issue since the executing thread then can't index from the texture stored on a different thread. PiperOrigin-RevId: 476388021 (cherry picked from commit 44b9aec0b973b1cd5df31df32fff276f340e6ce4)
Common module
Provides common code and utilities used by other media modules. Application code will not normally need to depend on this module directly.