plugin_store: Add VendorAllocatorLoader.

Because the C2Allocator used by V4L2DecodeComponent might contain
vendor-specific logic, we decide to load the vendor-implemented shared
library at runtime for creating C2Allocator.

The class VendorAllocatorLoader is used for loading the
vendor-specific C2Allocator implementations.

Bug: 160307705
Test: mmm external/v4l2_codec2/plugin_store

Change-Id: Iedf60287875d6d36125648cb9e94c52d8f427947
3 files changed
tree: 1afa1fa855ba8f01a57fe120eba289028255dc88
  1. accel/
  2. common/
  3. components/
  4. include/
  5. plugin_store/
  6. service/
  7. store/
  8. tests/
  9. .clang-format
  10. Android.mk
  11. C2EncoderInterface.cpp
  12. C2VDAAdaptor.cpp
  13. C2VDAAdaptorProxy.cpp
  14. C2VDAComponent.cpp
  15. MODULE_LICENSE_BSD
  16. NOTICE
  17. OWNERS
  18. PREUPLOAD.cfg
  19. README.md
README.md

V4L2-based Codec2 Component Implementation

Description of Sub-folders

  • accel/ Core V4L2 API and codec utilities, ported from Chromium project.

  • common/ Common helper classes for both components/ and store/.

  • components/ The C2Component implementations based on V4L2 API.

  • store/ The implementation of C2ComponentStore. It is used for creating all the C2Components implemented at components/ folder.

  • service/ The Codec2's V4L2 IComponentStore service. The service initiates the component store implemented at store/ folder, and registers it as the default service.