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

Commit d40d1f68 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

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

parents a910a7f0 36bd794f
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) {