[vlc-commits] mp4 mux: avoid unnecessary conversion

Rafaël Carré git at videolan.org
Sat Aug 24 18:24:35 CEST 2013


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sat Aug 24 17:14:03 2013 +0200| [317533a037f26da2af56e556b1302877cf9e48c6] | committer: Rafaël Carré

mp4 mux: avoid unnecessary conversion

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

 modules/mux/mp4.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/modules/mux/mp4.c b/modules/mux/mp4.c
index 25bfa5d..9a697c2 100644
--- a/modules/mux/mp4.c
+++ b/modules/mux/mp4.c
@@ -1152,9 +1152,8 @@ static bo_t *GetStblBox(sout_mux_t *p_mux, mp4_stream_t *p_stream)
         i_timescale = CLOCK_FREQ;
 
     /* first, create quantified length */
-    int64_t i_dts = 0, i_dts_q = 0;
+    int64_t i_dts = 0, i_dts_deq = 0;
     for (unsigned i = 0 ; i < p_stream->i_entry_count; i++) {
-        int64_t i_dts_deq = i_dts_q * CLOCK_FREQ / (int64_t)i_timescale;
         int64_t i_delta = p_stream->entry[i].i_length + i_dts - i_dts_deq;
 
         i_dts += p_stream->entry[i].i_length;
@@ -1162,7 +1161,7 @@ static bo_t *GetStblBox(sout_mux_t *p_mux, mp4_stream_t *p_stream)
         p_stream->entry[i].i_length =
             i_delta * (int64_t)i_timescale / CLOCK_FREQ;
 
-        i_dts_q += p_stream->entry[i].i_length;
+        i_dts_deq += i_delta;
     }
     /* then write encoded table */
     unsigned i_index = 0;



More information about the vlc-commits mailing list