c2_e2e_test: remove __dso_handle.

Seems the __dso_handle issue is resolved at R branch. Instead, keeping
__dso_handle causes compilation error.
This CL removes the workaround to fix the compilation.

Bug: 146030443
Test: mmm external/v4l2_codec2/tests/c2_e2e_test

Change-Id: Id7364c6bced6d4a6f7cc22b9b3f3b8869a859910
1 file changed
tree: fd9789ed5234fbc1f72b36a2058b01a6f0bdf8f7
  1. accel/
  2. common/
  3. include/
  4. service/
  5. store/
  6. tests/
  7. .clang-format
  8. Android.mk
  9. C2VDAAdaptor.cpp
  10. C2VDAAdaptorProxy.cpp
  11. C2VDAComponent.cpp
  12. C2VEAAdaptorProxy.cpp
  13. C2VEAComponent.cpp
  14. C2VEAFormatConverter.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.