]> git.sesse.net Git - vlc/commitdiff
DBus: don't use the demux object
authorRafaël Carré <funman@videolan.org>
Wed, 26 Mar 2008 10:28:26 +0000 (11:28 +0100)
committerRafaël Carré <funman@videolan.org>
Wed, 26 Mar 2008 10:28:26 +0000 (11:28 +0100)
modules/control/dbus.c

index 950b9aec31bbf53745e5be9817c6c7c16f0146b4..2c0c785f2e571f8be99e675c1e0604b06858658d 100644 (file)
@@ -53,7 +53,6 @@
 #include <vlc_meta.h>
 #include <vlc_input.h>
 #include <vlc_playlist.h>
-#include <vlc_demux.h>
 
 /*****************************************************************************
  * Local prototypes.
@@ -989,19 +988,12 @@ static int UpdateCaps( intf_thread_t* p_intf )
 
     if( p_playlist->p_input )
     {
+        /* XXX: if UpdateCaps() is called too early, these are
+         * unconditionnaly true */
         if( var_GetBool( p_playlist->p_input, "can-pause" ) )
             i_caps |= CAPS_CAN_PAUSE;
-
-        demux_t *p_demux = (demux_t*)vlc_object_find( p_playlist->p_input,
-            VLC_OBJECT_DEMUX, FIND_CHILD );
-        if( p_demux )
-        {
-            vlc_bool_t b_can_seek;
-            if( !stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_can_seek ) &&
-                    b_can_seek )
-                i_caps |= CAPS_CAN_SEEK;
-            vlc_object_release( p_demux );
-        }
+        if( var_GetBool( p_playlist->p_input, "seekable" ) )
+            i_caps |= CAPS_CAN_SEEK;
     }
 
     PL_UNLOCK;