]> git.sesse.net Git - vlc/blobdiff - src/control/vlm.c
libvlc: revert [22749], useless, breaks plugins
[vlc] / src / control / vlm.c
index 6072eec2c725f23340d38b3685b179139c9ba21a..a5bd67bd839506e436c24e321825eee9ac7a912c 100644 (file)
@@ -2,7 +2,7 @@
  * vlm.c: libvlc new API VLM handling functions
  *****************************************************************************
  * Copyright (C) 2005 the VideoLAN team
- * $Id: playlist.c 14265 2006-02-12 17:31:39Z zorglub $
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
  *
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#include "libvlc_internal.h"
+
 #include <vlc/libvlc.h>
 #include <vlc_es.h>
 #include <vlc_input.h>
 #include <vlc_vlm.h>
 
-#include "libvlc_internal.h"
-
 #if 0
 /* local function to be used in libvlc_vlm_show_media only */
 static char* recurse_answer( char* psz_prefix, vlm_message_t *p_answer ) {
@@ -232,7 +232,6 @@ void libvlc_vlm_add_input( libvlc_instance_t *p_instance, char *psz_name,
 #undef VLM_CHANGE_CODE
 }
 
-
 void libvlc_vlm_change_media( libvlc_instance_t *p_instance, char *psz_name,
                               char *psz_input, char *psz_output, int i_options,
                               char **ppsz_options, int b_enabled, int b_loop,
@@ -259,7 +258,6 @@ void libvlc_vlm_change_media( libvlc_instance_t *p_instance, char *psz_name,
 
 void libvlc_vlm_play_media( libvlc_instance_t *p_instance, char *psz_name,
                             libvlc_exception_t *p_exception )
-    
 {
     vlm_t *p_vlm;
     int64_t id;
@@ -275,7 +273,6 @@ void libvlc_vlm_play_media( libvlc_instance_t *p_instance, char *psz_name,
 
 void libvlc_vlm_stop_media( libvlc_instance_t *p_instance, char *psz_name,
                             libvlc_exception_t *p_exception )
-    
 {
     vlm_t *p_vlm;
     int64_t id;
@@ -291,7 +288,6 @@ void libvlc_vlm_stop_media( libvlc_instance_t *p_instance, char *psz_name,
 
 void libvlc_vlm_pause_media( libvlc_instance_t *p_instance, char *psz_name,
                             libvlc_exception_t *p_exception )
-    
 {
     vlm_t *p_vlm;
     int64_t id;
@@ -307,7 +303,6 @@ void libvlc_vlm_pause_media( libvlc_instance_t *p_instance, char *psz_name,
 
 void libvlc_vlm_seek_media( libvlc_instance_t *p_instance, char *psz_name,
                             float f_percentage, libvlc_exception_t *p_exception )
-    
 {
     vlm_t *p_vlm;
     int64_t id;
@@ -385,4 +380,3 @@ char* libvlc_vlm_show_media( libvlc_instance_t *p_instance, char *psz_name,
     libvlc_exception_raise( p_exception, "Unable to call show %s", psz_name );
     return NULL;
 }
-