]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/qtl.c
Force to specify options flags in input_item_New*.
[vlc] / modules / demux / playlist / qtl.c
index 778608765b92e00f1a5cb418fa816534fb32748a..d947bab8da7c4fccba90f3f73cf6b4b3a0afebe9 100644 (file)
@@ -350,7 +350,7 @@ static int Demux( demux_t *p_demux )
     else
     {
         p_input = input_item_NewExt( p_demux,
-                                psz_src, psz_moviename, 0, NULL, -1 );
+                                psz_src, psz_moviename, 0, NULL, 0, -1 );
 #define SADD_INFO( type, field ) if( field ) { input_item_AddInfo( \
                     p_input, "QuickTime Media Link", _(type), "%s", field ) ; }
         SADD_INFO( "href", psz_href );
@@ -360,7 +360,7 @@ static int Demux( demux_t *p_demux )
         if( psz_qtnext )
         {
             p_input = input_item_NewExt( p_demux,
-                                        psz_qtnext, NULL, 0, NULL, -1 );
+                                        psz_qtnext, NULL, 0, NULL, 0, -1 );
             input_item_AddSubItem( p_current_input, p_input );
             vlc_gc_decref( p_input );
         }