[vlc-commits] mp4: remove unused variable

Rémi Denis-Courmont git at videolan.org
Sat Mar 2 20:30:07 CET 2019


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Mar  2 21:29:43 2019 +0200| [573c42a71eb951cb3eb40f78799d33e861e50bdd] | committer: Rémi Denis-Courmont

mp4: remove unused variable

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=573c42a71eb951cb3eb40f78799d33e861e50bdd
---

 modules/demux/mp4/libmp4.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/modules/demux/mp4/libmp4.c b/modules/demux/mp4/libmp4.c
index 4915c0f41d..418c1a6b95 100644
--- a/modules/demux/mp4/libmp4.c
+++ b/modules/demux/mp4/libmp4.c
@@ -1246,7 +1246,6 @@ static int MP4_ReadBox_tkhd(  stream_t *p_stream, MP4_Box_t *p_box )
     double scale[2];    // scale factor; sx = scale[0] , sy = scale[1]
     int32_t *matrix = p_box->data.p_tkhd->i_matrix;
 
-    int32_t fmatrix[9];
     int64_t det = (int64_t)matrix[0] * matrix[4] - (int64_t)matrix[1] * matrix[3];
     if (det < 0) {
         /* If determinant is negative copy the matrix and flip it horizontally. */



More information about the vlc-commits mailing list