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

Commit 7bed6b8e 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

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



Change-Id: I1b57bc66d5f0d0ca7ffe4d91682594fd2e8a5dff
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 726d5169 f87af12b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1953,7 +1953,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;