Commit 70f87448 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

MP4: remove trailing spaces

parent c55ac4fe
...@@ -720,19 +720,19 @@ static int MP4_ReadBox_tkhd( stream_t *p_stream, MP4_Box_t *p_box ) ...@@ -720,19 +720,19 @@ static int MP4_ReadBox_tkhd( stream_t *p_stream, MP4_Box_t *p_box )
double rotation; //angle in degrees to be rotated clockwise double rotation; //angle in degrees to be rotated clockwise
double scale[2]; // scale factor; sx = scale[0] , sy = scale[1] double scale[2]; // scale factor; sx = scale[0] , sy = scale[1]
double translate[2];// amount to translate; tx = translate[0] , ty = translate[1] double translate[2];// amount to translate; tx = translate[0] , ty = translate[1]
int *matrix = p_box->data.p_tkhd->i_matrix; int *matrix = p_box->data.p_tkhd->i_matrix;
translate[0] = conv_fx(matrix[6]); translate[0] = conv_fx(matrix[6]);
translate[1] = conv_fx(matrix[7]); translate[1] = conv_fx(matrix[7]);
scale[0] = sqrt(conv_fx(matrix[0]) * conv_fx(matrix[0]) + scale[0] = sqrt(conv_fx(matrix[0]) * conv_fx(matrix[0]) +
conv_fx(matrix[3]) * conv_fx(matrix[3])); conv_fx(matrix[3]) * conv_fx(matrix[3]));
scale[1] = sqrt(conv_fx(matrix[1]) * conv_fx(matrix[1]) + scale[1] = sqrt(conv_fx(matrix[1]) * conv_fx(matrix[1]) +
conv_fx(matrix[4]) * conv_fx(matrix[4])); conv_fx(matrix[4]) * conv_fx(matrix[4]));
rotation = atan2(conv_fx(matrix[1]) / scale[1], conv_fx(matrix[0]) / scale[0]) * 180 / M_PI; rotation = atan2(conv_fx(matrix[1]) / scale[1], conv_fx(matrix[0]) / scale[0]) * 180 / M_PI;
if (rotation < 0) if (rotation < 0)
rotation += 360.; rotation += 360.;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment