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

Commit a462878f authored by Long Ling's avatar Long Ling
Browse files

SF: fix metadata blob copy

Test: check hdr10+ video playback
Bug: 216393140
Change-Id: I6ce0dba2af188256e736e23ec4dc70436ac4bfec
parent 99a9750a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ template <>
AidlPerFrameMetadataBlob translate(IComposerClient::PerFrameMetadataBlob x) {
    AidlPerFrameMetadataBlob blob;
    blob.key = translate<AidlPerFrameMetadataKey>(x.key),
    std::copy(blob.blob.begin(), blob.blob.end(), x.blob.begin());
    std::copy(x.blob.begin(), x.blob.end(), std::inserter(blob.blob, blob.blob.end()));
    return blob;
}