]> git.sesse.net Git - vlc/commitdiff
Pass input item through playlist item-change rather than its ID
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 16 May 2009 15:43:51 +0000 (18:43 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 16 May 2009 17:08:05 +0000 (20:08 +0300)
modules/gui/skins2/src/vlcproc.cpp
modules/misc/notify/telepathy.c
src/playlist/engine.c
src/playlist/fetcher.c
src/playlist/item.c
src/playlist/preparser.c

index 4c890150e2097bb449cf7c4b37a4dce13cfa9434..8558f398eda53ab8da35820166aff88f27a92d15 100644 (file)
@@ -414,13 +414,14 @@ int VlcProc::onItemChange( vlc_object_t *pObj, const char *pVariable,
                            void *pParam )
 {
     VlcProc *pThis = (VlcProc*)pParam;
+    input_item_t *p_item = newval.p_address;
 
     // Update the stream variable
     pThis->updateStreamName();
 
     // Create a playtree notify command
     CmdPlaytreeUpdate *pCmdTree = new CmdPlaytreeUpdate( pThis->getIntf(),
-                                                         newVal.i_int );
+                                                         p_item->i_id );
 
     // Push the command in the asynchronous command queue
     AsyncQueue *pQueue = AsyncQueue::instance( pThis->getIntf() );
index 7b55a8a49ca5015f19179c3c394eb190c8f446c6..b6c01c89a9f7d63b37ae3d84d9ec59ca0f19017b 100644 (file)
@@ -183,7 +183,9 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
     }
     else
     {
-        if( newval.i_int != p_intf->p_sys->i_id ) /* "item-change" */
+        input_item_t *p_item = newval.p_address;
+
+        if( p_item->i_id != p_intf->p_sys->i_id ) /* "item-change" */
             return VLC_SUCCESS;
         /* Some variable bitrate inputs call "item-change callbacks each time
          * their length is updated, that is several times per second.
index c1d8065b08e558a57fb3f52dd1f84fda7702cd7a..f5139faa4bf4f974293158b98a9ddfb1476b526c 100644 (file)
@@ -272,8 +272,7 @@ static void VariablesInit( playlist_t *p_playlist )
     var_Create( p_playlist, "intf-change", VLC_VAR_BOOL );
     var_SetBool( p_playlist, "intf-change", true );
 
-    var_Create( p_playlist, "item-change", VLC_VAR_INTEGER );
-    var_SetInteger( p_playlist, "item-change", -1 );
+    var_Create( p_playlist, "item-change", VLC_VAR_ADDRESS );
 
     var_Create( p_playlist, "playlist-item-deleted", VLC_VAR_INTEGER );
     var_SetInteger( p_playlist, "playlist-item-deleted", -1 );
index c9384b4d2418cb1134f04042bfeca221b2d5879a..f8d8a422a761934057acb2eb61ac7a7d6bc1bb5e 100644 (file)
@@ -419,7 +419,7 @@ static void *Thread( void *p_data )
         {
             PL_DEBUG( "found art for %s in cache", psz_name );
             input_item_SetArtFetched( p_item, true );
-            var_SetInteger( p_playlist, "item-change", p_item->i_id );
+            var_SetAddress( p_playlist, "item-change", p_item );
         }
         else
         {
index 212ee75420ca2c6e66dee6a8e0c1e1ea9340b6f3..4f8b2cdd723669a95535f10f8a59d34cc8e0ce57 100644 (file)
@@ -117,7 +117,7 @@ static void input_item_changed( const vlc_event_t * p_event,
 {
     playlist_item_t *p_item = user_data;
     VLC_UNUSED( p_event );
-    var_SetInteger( p_item->p_playlist, "item-change", p_item->p_input->i_id );
+    var_SetAddress( p_item->p_playlist, "item-change", p_item->p_input );
 }
 
 /*****************************************************************************
@@ -625,7 +625,7 @@ static playlist_item_t *ItemToNode( playlist_t *p_playlist,
         }
         pl_priv(p_playlist)->b_reset_currently_playing = true;
         vlc_cond_signal( &pl_priv(p_playlist)->signal );
-        var_SetInteger( p_playlist, "item-change", p_item_in_category->p_input->i_id );
+        var_SetAddress( p_playlist, "item-change", p_item_in_category->p_input );
         PL_UNLOCK_IF( !b_locked );
         return p_item_in_category;
     }
index 74b3961f475a75e0e3dd8c345d1e81815c058c76..f2cb2329191a7b2def984c43bcc168916bffdb2a 100644 (file)
@@ -130,7 +130,7 @@ static void Preparse( playlist_t *p_playlist, input_item_t *p_item )
         input_Preparse( VLC_OBJECT(p_playlist), p_item );
         input_item_SetPreparsed( p_item, true );
 
-        var_SetInteger( p_playlist, "item-change", p_item->i_id );
+        var_SetAddress( p_playlist, "item-change", p_item );
     }
 
     stats_TimerStop( p_playlist, STATS_TIMER_PREPARSE );