[vlc-devel] commit: Do not recreate the decoder when unneeded (mp4). (Laurent Aimar )

git version control git at videolan.org
Sat Nov 22 14:20:56 CET 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Fri Nov 21 21:28:26 2008 +0100| [94a2e5cd09df4839919950d0463a5f6889e8efac] | committer: Laurent Aimar 

Do not recreate the decoder when unneeded (mp4).

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

 modules/demux/mp4/mp4.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index 369c632..36469af 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -1958,9 +1958,9 @@ static int TrackGotoChunkSample( demux_t *p_demux, mp4_track_t *p_track,
     bool b_reselect = false;
 
     /* now see if actual es is ok */
-    if( (p_track->i_chunk >= p_track->i_chunk_count - 1) ||
-        (p_track->chunk[p_track->i_chunk].i_sample_description_index !=
-            p_track->chunk[i_chunk].i_sample_description_index) )
+    if( p_track->i_chunk >= p_track->i_chunk_count ||
+        p_track->chunk[p_track->i_chunk].i_sample_description_index !=
+            p_track->chunk[i_chunk].i_sample_description_index )
     {
         msg_Warn( p_demux, "recreate ES for track[Id 0x%x]",
                   p_track->i_track_ID );




More information about the vlc-devel mailing list