commit | 37f8a499e77daf217e7d1cb5828ae1fd47b014f9 | [log] [tgz] |
---|---|---|
author | Wonsik Kim <wonsik@google.com> | Tue Apr 27 02:39:36 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Apr 27 02:39:36 2021 +0000 |
tree | 940dea9be7d664e1aeba8fcea12ec8132d481bd7 | |
parent | 5eabd2d5a9ace377e244a9f19f55cc98d6a6c39d [diff] | |
parent | 5d0654c89957927703d2d6f23c8bada3ee2b6e63 [diff] |
Merge "codec2 hidl plugin: fix FilterWrapperStub::createBlockPool" am: 5d0654c899 Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1687090 Change-Id: I3e2a774fbfa35f161eb337d2b848ddec61604915
diff --git a/media/codec2/hidl/plugin/FilterWrapperStub.cpp b/media/codec2/hidl/plugin/FilterWrapperStub.cpp index 1b94a1a..01ca596 100644 --- a/media/codec2/hidl/plugin/FilterWrapperStub.cpp +++ b/media/codec2/hidl/plugin/FilterWrapperStub.cpp
@@ -42,10 +42,10 @@ } c2_status_t FilterWrapper::createBlockPool( - C2PlatformAllocatorStore::id_t, - std::shared_ptr<const C2Component>, - std::shared_ptr<C2BlockPool> *) { - return C2_OMITTED; + C2PlatformAllocatorStore::id_t allocatorId, + std::shared_ptr<const C2Component> component, + std::shared_ptr<C2BlockPool> *pool) { + return CreateCodec2BlockPool(allocatorId, component, pool); } } // namespace android