HomeSort by relevance Sort by last modified time
    Searched refs:fillWork (Results 1 - 9 of 9) sorted by null

  /hardware/google/av/media/codecs/base/include/
SimpleC2Component.h 116 * feed the work into |fillWork| function. |fillWork| must be
117 * "non-blocking". Once |fillWork| returns the filled work will be returned
121 * \param[in] fillWork the function to fill the retrieved work.
123 void finish(uint64_t frameIndex, std::function<void(const std::unique_ptr<C2Work> &)> fillWork);
  /hardware/google/av/media/codecs/mpeg4_h263/
C2SoftMpeg4Dec.cpp 298 auto fillWork = [buffer, index](const std::unique_ptr<C2Work> &work) {
312 fillWork(work);
314 finish(index, fillWork);
  /hardware/google/av/media/codecs/vpx/
C2SoftVpxDec.cpp 297 auto fillWork = [buffer, index](const std::unique_ptr<C2Work> &work) {
311 fillWork(work);
313 finish(index, fillWork);
  /hardware/google/av/media/codecs/base/
SimpleC2Component.cpp 302 uint64_t frameIndex, std::function<void(const std::unique_ptr<C2Work> &)> fillWork) {
314 fillWork(work);
  /hardware/google/av/media/codecs/aac/
C2SoftAacDec.cpp 374 std::function<void(const std::unique_ptr<C2Work>&)> fillWork =
424 fillWork(work);
426 finish(outInfo.frameIndex, fillWork);
    [all...]
  /hardware/google/av/media/codecs/hevc/
C2SoftHevcDec.cpp 679 auto fillWork = [buffer, index](const std::unique_ptr<C2Work> &work) {
693 fillWork(work);
695 finish(index, fillWork);
    [all...]
  /hardware/google/av/media/codecs/xaac/
C2SoftXaacDec.cpp 269 auto fillWork = [buffer = createLinearBuffer(block)](
283 fillWork(work);
285 finish(mCurFrameIndex, fillWork);
    [all...]
  /hardware/google/av/media/codecs/avc/
C2SoftAvcDec.cpp 717 auto fillWork = [buffer, index](const std::unique_ptr<C2Work> &work) {
731 fillWork(work);
733 finish(index, fillWork);
    [all...]
  /hardware/google/av/media/codecs/mpeg2/
C2SoftMpeg2Dec.cpp 730 auto fillWork = [buffer, index](const std::unique_ptr<C2Work> &work) {
744 fillWork(work);
746 finish(index, fillWork);
    [all...]

Completed in 792 milliseconds