v4l2_codec2: Minor cleanup in C2VEAComponent.

This CL performs some minor cleanup in the C2VEAComponent:
- Make sure the code is formatted according to the .clang-format file.
- Prefix C2Config enum values with C2Config. While I couldn't find any
  clear recommendations related to this, it's clearer now where the
  values come from. Without this prefix my editor even fails to resolve
  these values.
- Remove use of 'DISALLOW_COPY_AND_ASSIGN' macro.

Bug: 147457498
Test: m -j32
Change-Id: If5b185e8d10be7a7880d1ceaf4b7fe468502b31d
2 files changed
tree: d78b02156a16764bbc418981fd02b02f40fa431c
  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.