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

gkovacs subversion at mplayerhq.hu
Tue Aug 25 09:09:38 CEST 2009


Author: gkovacs
Date: Tue Aug 25 09:09:38 2009
New Revision: 5263

Log:
move else statements onto same line for consistency in style with the rest of ffmpeg

Modified:
   concat/libavformat/avplaylist.c

Modified: concat/libavformat/avplaylist.c
==============================================================================
--- concat/libavformat/avplaylist.c	Tue Aug 25 09:07:59 2009	(r5262)
+++ concat/libavformat/avplaylist.c	Tue Aug 25 09:09:38 2009	(r5263)
@@ -215,8 +215,7 @@ int av_playlist_add_path(AVPlaylistConte
         av_free(ctx->durations);
         ctx->durations = NULL;
         return AVERROR_NOMEM;
-    }
-    else
+    } else
         ctx->flist = flist_tmp;
     ctx->flist[ctx->pelist_size] = NULL;
     ctx->flist[ctx->pelist_size-1] = itempath;
@@ -227,8 +226,7 @@ int av_playlist_add_path(AVPlaylistConte
         av_free(ctx->durations);
         ctx->durations = NULL;
         return AVERROR_NOMEM;
-    }
-    else
+    } else
         ctx->durations = durations_tmp;
     ctx->durations[ctx->pelist_size] = 0;
     nb_streams_list_tmp = av_realloc(ctx->nb_streams_list,
@@ -238,8 +236,7 @@ int av_playlist_add_path(AVPlaylistConte
         av_free(ctx->nb_streams_list);
         ctx->nb_streams_list = NULL;
         return AVERROR_NOMEM;
-    }
-    else
+    } else
         ctx->nb_streams_list = nb_streams_list_tmp;
     ctx->nb_streams_list[ctx->pelist_size] = 0;
     return 0;


More information about the FFmpeg-soc mailing list