[vlc-devel] commit: Let input_item_AddSubItem set the playlist flags. (Laurent Aimar )

git version control git at videolan.org
Sat Nov 22 16:37:59 CET 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sat Nov 22 10:06:12 2008 +0100| [beb3e94f47852750a21eb3720d7f2c11337a78a0] | committer: Laurent Aimar 

Let input_item_AddSubItem set the playlist flags.

It will allows proper locking of p_item.

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

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

diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index 36469af..0f317dc 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -368,9 +368,8 @@ static int Open( vlc_object_t * p_this )
 
         msg_Dbg( p_demux, "detected playlist mov file (%d ref)", i_count );
 
-        input_thread_t * p_input = vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
-        input_item_t * p_current = input_GetItem( p_input );
-        p_current->i_type = ITEM_TYPE_PLAYLIST;
+        input_thread_t *p_input = vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
+        input_item_t *p_current = input_GetItem( p_input );
 
         for( i = 0; i < i_count; i++ )
         {
@@ -415,10 +414,9 @@ static int Open( vlc_object_t * p_this )
                     psz_ref = psz_absolute;
                     free( psz_path );
                 }
-                input_item_t *p_input;
                 msg_Dbg( p_demux, "adding ref = `%s'", psz_ref );
-                p_input = input_item_NewExt( p_demux, psz_ref, NULL,
-                                    0, NULL, -1 );
+                input_item_t *p_input = input_item_NewExt( p_demux, psz_ref
+                                                           , NULL, 0, NULL, -1 );
                 input_item_CopyOptions( p_current, p_input );
                 input_item_AddSubItem( p_current, p_input );
                 vlc_gc_decref( p_input );




More information about the vlc-devel mailing list