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

Commit aeae699f authored by Ronghua Wu's avatar Ronghua Wu Committed by Android (Google) Code Review
Browse files

Merge "media: define OMX_VIDEO_HEVCProfileMain10HDR10" into nyc-dev

parents 2dfed209 0471d0a3
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -907,6 +907,7 @@ inline static const char *asString(OMX_VIDEO_HEVCPROFILETYPE i, const char *def
        case OMX_VIDEO_HEVCProfileUnknown:      return "Unknown";  // unused
        case OMX_VIDEO_HEVCProfileMain:         return "Main";
        case OMX_VIDEO_HEVCProfileMain10:       return "Main10";
        case OMX_VIDEO_HEVCProfileMain10HDR10:  return "Main10HDR10";
        default:                                return def;
    }
}
+6 −4
Original line number Diff line number Diff line
@@ -180,6 +180,8 @@ typedef enum OMX_VIDEO_HEVCPROFILETYPE {
    OMX_VIDEO_HEVCProfileUnknown      = 0x0,
    OMX_VIDEO_HEVCProfileMain         = 0x1,
    OMX_VIDEO_HEVCProfileMain10       = 0x2,
    // Main10 profile with HDR SEI support.
    OMX_VIDEO_HEVCProfileMain10HDR10  = 0x1000,
    OMX_VIDEO_HEVCProfileMax          = 0x7FFFFFFF
} OMX_VIDEO_HEVCPROFILETYPE;