Merge "Fix typo in color constants: Marix -> Matrix" into main

This commit is contained in:
James Zern 2022-04-12 05:08:08 +00:00 committed by Gerrit Code Review
commit 7efcf3cc26
2 changed files with 10 additions and 10 deletions

View File

@ -96,15 +96,15 @@ const SharpYuvConversionMatrix* SharpYuvGetConversionMatrix(
switch (matrix_type) {
case kSharpYuvMatrixWebp:
return &kWebpMatrix;
case kSharpYuvMarixRec601Limited:
case kSharpYuvMatrixRec601Limited:
return &kRec601LimitedMatrix;
case kSharpYuvMarixRec601Full:
case kSharpYuvMatrixRec601Full:
return &kRec601FullMatrix;
case kSharpYuvMarixRec709Limited:
case kSharpYuvMatrixRec709Limited:
return &kRec709LimitedMatrix;
case kSharpYuvMarixRec709Full:
case kSharpYuvMatrixRec709Full:
return &kRec709FullMatrix;
case kSharpYuvMarixNum:
case kSharpYuvMatrixNum:
return NULL;
}
return NULL;

View File

@ -41,11 +41,11 @@ void SharpYuvComputeConversionMatrix(const SharpYuvColorSpace* yuv_color_space,
// Enums for precomputed conversion matrices.
typedef enum {
kSharpYuvMatrixWebp = 0,
kSharpYuvMarixRec601Limited,
kSharpYuvMarixRec601Full,
kSharpYuvMarixRec709Limited,
kSharpYuvMarixRec709Full,
kSharpYuvMarixNum
kSharpYuvMatrixRec601Limited,
kSharpYuvMatrixRec601Full,
kSharpYuvMatrixRec709Limited,
kSharpYuvMatrixRec709Full,
kSharpYuvMatrixNum
} SharpYuvMatrixType;
// Returns a pointer to a matrix for one of the predefined colorspaces.