]> git.sesse.net Git - vlc/blobdiff - modules/codec/cmml/cmml.c
Removes trailing spaces. Removes tabs.
[vlc] / modules / codec / cmml / cmml.c
index 2b6e6ca17cf286e7b0b5ce7a7f52a2351f6a279c..7d8d9b1f82caadcafa5eecf41d02b7e3bc46587f 100644 (file)
  * Preamble
  *****************************************************************************/
 #include <vlc/vlc.h>
-#include <vlc/decoder.h>
-#include <vlc/intf.h>
-
+#include <vlc_input.h>
+#include <vlc_codec.h>
 #include <vlc_osd.h>
-
-#include "charset.h"
-
+#include <vlc_charset.h>
+#include <vlc_interface.h>
 #include "xtag.h"
 
 #undef  CMML_DEBUG
@@ -229,7 +227,7 @@ static void ParseText( decoder_t *p_dec, block_t *p_block )
 #ifdef CMML_DEBUG
     msg_Dbg( p_dec, "psz_cmml is \"%s\"", psz_cmml );
 #endif
-    
     /* Parse the <clip> part of the CMML */
     p_clip_parser = xtag_new_parse( psz_cmml, p_block->i_buffer );
     if( !p_clip_parser )
@@ -262,7 +260,7 @@ static void ParseText( decoder_t *p_dec, block_t *p_block )
     if( psz_url )
     {
         char *psz_tmp = strdup( psz_url );
-        
         val.p_address = psz_tmp;
         if( var_Set( p_dec, "psz-current-anchor-url", val ) != VLC_SUCCESS )
         {