VideoFramePool: Only accept one request at the same time

Originally, VideoFramePool can accept multiple requests in parallel.
However, it increases the code complexity. Also, currently the caller
only request one frame at the same time.

This CL changes the VideoFramePool to accept one request at the same
time.

Bug: 166072201
Test: pass tast.arc.VideoDecodeAccel.h264_vm

Change-Id: I16811e1d004dcaf8baeb70efb4a1cb5d2a3daacf
3 files changed
tree: 51844d8185c998f8e92e5ba4fb4d2b31d0889e38
  1. accel/
  2. common/
  3. components/
  4. plugin_store/
  5. service/
  6. store/
  7. tests/
  8. .clang-format
  9. MODULE_LICENSE_BSD
  10. NOTICE
  11. OWNERS
  12. PREUPLOAD.cfg
  13. 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.