]> git.sesse.net Git - vlc/blobdiff - modules/demux/vobsub.c
demux: dash: rename startIndex -> startNumber
[vlc] / modules / demux / vobsub.c
index e4274b85b7f94a9feca9e9cda23f64be8664ee40..8de3437e906bb2349f0f7541b13104ce327a40a0 100644 (file)
@@ -387,7 +387,7 @@ static int Demux( demux_t *p_demux )
             }
 
             /* allocate a packet */
-            if( ( p_block = block_New( p_demux, i_size ) ) == NULL )
+            if( ( p_block = block_Alloc( i_size ) ) == NULL )
             {
                 tk.i_current_subtitle++;
                 continue;
@@ -432,7 +432,10 @@ static int TextLoad( text_t *txt, stream_t *s )
         char **ppsz_new;
 
         if( psz == NULL || (n >= INT_MAX/sizeof(char *)) )
+        {
+            free( psz );
             break;
+        }
 
         ppsz_new = realloc( lines, (n + 1) * sizeof (char *) );
         if( ppsz_new == NULL )
@@ -555,7 +558,7 @@ static int ParseVobSubIDX( demux_t *p_demux )
             }
 
             current_tk->p_es = es_out_Add( p_demux->out, &fmt );
-            msg_Dbg( p_demux, "new vobsub track detected" );
+            msg_Dbg( p_demux, "New vobsub track detected: %i [%s]", i_track_id, language );
         }
         else if( !strncmp( line, "timestamp:", 10 ) )
         {
@@ -674,7 +677,7 @@ static int DemuxVobSub( demux_t *p_demux, block_t *p_bk )
         }
 
         /* Create a block */
-        p_pkt = block_New( p_demux, i_size );
+        p_pkt = block_Alloc( i_size );
         if( unlikely(p_pkt == NULL) )
             break;
         memcpy( p_pkt->p_buffer, p, i_size);