[vlc-commits] commit: imem: remove tab in sourcecode (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Wed Apr 28 13:41:43 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Apr 28 13:41:29 2010 +0200| [0ef46dbedcab87a3100753407f70505479209638] | committer: Jean-Baptiste Kempf
imem: remove tab in sourcecode
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0ef46dbedcab87a3100753407f70505479209638
---
modules/access/imem.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/modules/access/imem.c b/modules/access/imem.c
index 035f704..ab41aad 100644
--- a/modules/access/imem.c
+++ b/modules/access/imem.c
@@ -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) {
More information about the vlc-commits
mailing list