Colour element: Matrix renamed to MatrixCoefficients.

Change-Id: I148e81be6c23f0d0e61dc5820a1ae80f685af57f
This commit is contained in:
Tom Finegan
2016-02-18 10:08:11 -08:00
parent e0b11351fb
commit f2fc28e044
7 changed files with 19 additions and 17 deletions

View File

@@ -437,7 +437,7 @@ struct Colour {
// Unless otherwise noted all values assigned upon construction are the
// equivalent of unspecified/default.
Colour()
: matrix(kValueNotPresent),
: matrix_coefficients(kValueNotPresent),
bits_per_channel(kValueNotPresent),
chroma_subsampling_horz(kValueNotPresent),
chroma_subsampling_vert(kValueNotPresent),
@@ -459,7 +459,7 @@ struct Colour {
static bool Parse(IMkvReader* reader, long long element_start,
long long element_size, Colour** colour);
long long matrix;
long long matrix_coefficients;
long long bits_per_channel;
long long chroma_subsampling_horz;
long long chroma_subsampling_vert;