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

Commit 6a8b5ec1 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "SimpleC2Component: Fix YUV to RGB conversion for 10-bit decode" am:...

Merge "SimpleC2Component: Fix YUV to RGB conversion for 10-bit decode" am: d40d1f68 am: 6ad58417 am: 215da14d am: 14db6c5e

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



Change-Id: Ifd23132fbd64718ae98ba7d3e32634e2d22690d3
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents eed52b3e 14db6c5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ static C2ColorAspectsStruct FillMissingColorAspects(
// matrix conversion coefficients
// (see media/libstagefright/colorconverter/ColorConverter.cpp for more details)
struct Coeffs {
    int32_t _y, _b_u, _g_u, _g_v, _r_v, _c16;
    int32_t _y, _r_v, _g_u, _g_v, _b_u, _c16;
};

static const struct Coeffs GetCoeffsForAspects(const C2ColorAspectsStruct &aspects) {