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

@@ -201,8 +201,8 @@ bool CopyColour(const mkvparser::Colour& parser_colour,
if (!muxer_colour)
return false;
if (ColourValuePresent(parser_colour.matrix))
muxer_colour->matrix = parser_colour.matrix;
if (ColourValuePresent(parser_colour.matrix_coefficients))
muxer_colour->matrix_coefficients = parser_colour.matrix_coefficients;
if (ColourValuePresent(parser_colour.bits_per_channel))
muxer_colour->bits_per_channel = parser_colour.bits_per_channel;
if (ColourValuePresent(parser_colour.chroma_subsampling_horz))