[FFmpeg-soc] [soc]: r5079 - concat/ffmpeg.c.diff

gkovacs subversion at mplayerhq.hu
Thu Aug 13 20:53:10 CEST 2009


Author: gkovacs
Date: Thu Aug 13 20:53:10 2009
New Revision: 5079

Log:
align assignments

Modified:
   concat/ffmpeg.c.diff

Modified: concat/ffmpeg.c.diff
==============================================================================
--- concat/ffmpeg.c.diff	Thu Aug 13 19:12:27 2009	(r5078)
+++ concat/ffmpeg.c.diff	Thu Aug 13 20:53:10 2009	(r5079)
@@ -1,5 +1,5 @@
 diff --git a/ffmpeg.c b/ffmpeg.c
-index e899180..1d63190 100644
+index e899180..789a829 100644
 --- a/ffmpeg.c
 +++ b/ffmpeg.c
 @@ -1237,7 +1237,8 @@ static void print_report(AVFormatContext **output_files,
@@ -80,15 +80,15 @@ index e899180..1d63190 100644
 +
 +        if (!ist_table[pkt.stream_index]) {
 +            ist = ist_table[pkt.stream_index] = av_mallocz(sizeof(AVInputStream));
-+            ist->st = is->streams[pkt.stream_index];
-+            ist->file_index = file_index;
++            ist->st              = is->streams[pkt.stream_index];
++            ist->file_index      = file_index;
 +            ist->decoding_needed = 1;
-+            ist->is_start = 1;
-+            ist->discard = 0;
-+            ist->sample_index = 0;
-+            ist->index = file_table[file_index].ist_index + pkt.stream_index;
-+            ist->pts = 0;
-+            ist->next_pts = AV_NOPTS_VALUE;
++            ist->is_start        = 1;
++            ist->discard         = 0;
++            ist->sample_index    = 0;
++            ist->index           = file_table[file_index].ist_index + pkt.stream_index;
++            ist->pts             = 0;
++            ist->next_pts        = AV_NOPTS_VALUE;
 +        }
 +
          /* the following test is needed in case new streams appear


More information about the FFmpeg-soc mailing list