]> git.sesse.net Git - vlc/commitdiff
imem: remove tab in sourcecode
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 28 Apr 2010 11:41:29 +0000 (13:41 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 28 Apr 2010 11:41:29 +0000 (13:41 +0200)
modules/access/imem.c

index 035f7048ab485a5a074f19265c6ebe35ff14fd12..ab41aade581773f1438dfddf940d64f0327a74b2 100644 (file)
@@ -245,10 +245,10 @@ static int OpenCommon(vlc_object_t *object, imem_sys_t **sys_ptr, const char *ps
 {
     char *tmp;
 
-       /* */
+    /* */
     imem_sys_t *sys = calloc(1, sizeof(*sys));
-       if (!sys)
-               return VLC_ENOMEM;
+    if (!sys)
+        return VLC_ENOMEM;
 
     /* Read the user functions */
     tmp = var_InheritString(object, "imem-get");
@@ -411,9 +411,9 @@ static int OpenDemux(vlc_object_t *object)
     if (OpenCommon(object, &sys, demux->psz_path))
         return VLC_EGENERIC;
 
-       /* ES format */
+    /* ES format */
     es_format_t fmt;
-       es_format_Init(&fmt, UNKNOWN_ES, 0);
+    es_format_Init(&fmt, UNKNOWN_ES, 0);
 
     fmt.i_id = var_InheritInteger(object, "imem-id");
     fmt.i_group = var_InheritInteger(object, "imem-group");
@@ -479,7 +479,7 @@ static int OpenDemux(vlc_object_t *object)
 
     fmt.psz_language = var_InheritString(object, "imem-language");
 
-       sys->es = es_out_Add(demux->out, &fmt);
+    sys->es = es_out_Add(demux->out, &fmt);
     es_format_Clean(&fmt);
 
     if (!sys->es) {