]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/commands/cmd_input.cpp
Fix MRL generation for open dialog in order to stream. (#1575)
[vlc] / modules / gui / skins2 / commands / cmd_input.cpp
index b70ffebd05bb2ec3042e5b2a4e407545dc075b1d..0aafe14db548a8a2636628c611f482b128afd110 100644 (file)
@@ -5,7 +5,7 @@
  * $Id$
  *
  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
- *          Olivier Teulière <ipkiss@via.ecp.fr>
+ *          Olivier Teulière <ipkiss@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
-#include <vlc/aout.h>
 #include "cmd_input.hpp"
 #include "cmd_dialogs.hpp"
-
+#include <vlc_aout.h>
+#include <vlc_input.h>
+#include <vlc_playlist.h>
 
 void CmdPlay::execute()
 {
@@ -35,10 +36,8 @@ void CmdPlay::execute()
         return;
     }
 
-    if( pPlaylist->i_size )
-    {
+    if( !playlist_IsEmpty( pPlaylist ) )
         playlist_Play( pPlaylist );
-    }
     else
     {
         // If the playlist is empty, open a file requester instead
@@ -80,7 +79,7 @@ void CmdSlower::execute()
     if( pInput )
     {
         vlc_value_t val;
-        val.b_bool = VLC_TRUE;
+        val.b_bool = true;
 
         var_Set( pInput, "rate-slower", val );
         vlc_object_release( pInput );
@@ -96,7 +95,7 @@ void CmdFaster::execute()
     if( pInput )
     {
         vlc_value_t val;
-        val.b_bool = VLC_TRUE;
+        val.b_bool = true;
 
         var_Set( pInput, "rate-faster", val );
         vlc_object_release( pInput );