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

Commit 29964743 authored by Taehwan Kim's avatar Taehwan Kim
Browse files

Codec2 vndk: fix typo in C2AllocatorGralloc



Signed-off-by: default avatarTaehwan Kim <t_h.kim@samsung.com>
Change-Id: Icdd9faf1015ab139acaa410e1dc2faa61b497f48
parent bfe7b66f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -939,7 +939,7 @@ uint32_t ExtractFormatFromCodec2GrallocHandle(const C2Handle *const handle) {
    return 0;
}

bool EXtractMetadataFromCodec2GrallocHandle(
bool ExtractMetadataFromCodec2GrallocHandle(
        const C2Handle *const handle,
        uint32_t *width, uint32_t *height, uint32_t *format, uint64_t *usage, uint32_t *stride) {
    if (handle == nullptr) {
@@ -959,7 +959,7 @@ bool EXtractMetadataFromCodec2GrallocHandle(
        (void)C2HandleAhwb::Import(handle, width, height, format, usage, stride, &origId);
        return true;
    }
    ALOGE("EXtractMetadata from non compatible handle");
    ALOGE("ExtractMetadata from non compatible handle");
    return false;
}