Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5442036 authored by Ryan Prichard's avatar Ryan Prichard Committed by Automerger Merge Worker
Browse files

Merge "Make int32_t conversion explicit" into main am: c36f3abc am:...

Merge "Make int32_t conversion explicit" into main am: c36f3abc am: 59c17004 am: 4926e4a2 am: f87af12b am: 7bed6b8e

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/2751929



Change-Id: I48ef2e6f4676a5791b308338df736c70c2954df0
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents f182c903 7bed6b8e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1954,7 +1954,8 @@ c2_status_t Codec2Client::Component::createBlockPool(
        std::shared_ptr<Codec2Client::Configurable>* configurable) {
    if (mAidlBase) {
        c2_aidl::IComponent::BlockPool aidlBlockPool;
        ::ndk::ScopedAStatus transStatus = mAidlBase->createBlockPool(id, &aidlBlockPool);
        ::ndk::ScopedAStatus transStatus = mAidlBase->createBlockPool(static_cast<int32_t>(id),
                                                                      &aidlBlockPool);
        c2_status_t status = GetC2Status(transStatus, "createBlockPool");
        if (status != C2_OK) {
            return status;