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

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

Merge "MediaCodec: Shorten profile debug strings for 422 APV profiles." into main

parents 438b21c6 55c6669c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -593,9 +593,9 @@ inline constexpr int32_t APVProfile422_10HDR10Plus = 0x2000;

inline static const char *asString_APVProfile(int32_t i, const char *def = "??") {
    switch (i) {
        case APVProfile422_10:           return "APVProfile422_10";
        case APVProfile422_10HDR10:      return "APVProfile422_10HDR10";
        case APVProfile422_10HDR10Plus:  return "APVProfile422_10HDR10Plus";
        case APVProfile422_10:           return "422_10";
        case APVProfile422_10HDR10:      return "422_10HDR10";
        case APVProfile422_10HDR10Plus:  return "422_10HDR10Plus";
        default:                        return def;
    }
}