[FFmpeg-soc] [soc]: r5386 - concat/libavformat/avplaylist.c

gkovacs subversion at mplayerhq.hu
Thu Sep 3 22:09:30 CEST 2009


Author: gkovacs
Date: Thu Sep  3 22:09:30 2009
New Revision: 5386

Log:
align assignments

Modified:
   concat/libavformat/avplaylist.c

Modified: concat/libavformat/avplaylist.c
==============================================================================
--- concat/libavformat/avplaylist.c	Thu Sep  3 22:08:27 2009	(r5385)
+++ concat/libavformat/avplaylist.c	Thu Sep  3 22:09:30 2009	(r5386)
@@ -92,10 +92,10 @@ int av_playlist_insert_item(AVPlaylistCo
         ctx->formatcontext_list[i] = ctx->formatcontext_list[i - 1];
     }
     ctx->formatcontext_list[pos] = NULL;
-    ctx->durations[pos] = durations_offset;
-    ctx->nb_streams_list[pos] = nb_streams_offset;
-    itempath_len = strlen(itempath);
-    ctx->flist[pos] = av_malloc(itempath_len + 1);
+    ctx->durations[pos]          = durations_offset;
+    ctx->nb_streams_list[pos]    = nb_streams_offset;
+    itempath_len                 = strlen(itempath);
+    ctx->flist[pos]              = av_malloc(itempath_len + 1);
     if (!ctx->flist[pos]) {
         av_log(ctx, AV_LOG_ERROR,
                "av_malloc error in av_playlist_insert_item\n");


More information about the FFmpeg-soc mailing list