[FFmpeg-soc] [soc]: r4647 - concat/libavformat/concat.c

gkovacs subversion at mplayerhq.hu
Tue Jul 7 03:05:04 CEST 2009


Author: gkovacs
Date: Tue Jul  7 03:05:04 2009
New Revision: 4647

Log:
aligned variable assignment list

Modified:
   concat/libavformat/concat.c

Modified: concat/libavformat/concat.c
==============================================================================
--- concat/libavformat/concat.c	Tue Jul  7 03:03:21 2009	(r4646)
+++ concat/libavformat/concat.c	Tue Jul  7 03:05:04 2009	(r4647)
@@ -41,24 +41,24 @@ static int concat_read_header(AVFormatCo
 
 void concat_init_demuxer(AVInputFormat *cdm)
 {
-    cdm->name = "concat";
-    cdm->long_name = NULL_IF_CONFIG_SMALL("CONCAT format");
+    cdm->name           = "concat";
+    cdm->long_name      = NULL_IF_CONFIG_SMALL("CONCAT format");
     cdm->priv_data_size = sizeof(PlaylistContext);
-    cdm->read_probe = concat_probe;
-    cdm->read_header = concat_read_header;
-    cdm->read_packet = ff_concatgen_read_packet;
-    cdm->read_close = ff_concatgen_read_close;
-    cdm->read_seek = ff_concatgen_read_seek;
+    cdm->read_probe     = concat_probe;
+    cdm->read_header    = concat_read_header;
+    cdm->read_packet    = ff_concatgen_read_packet;
+    cdm->read_close     = ff_concatgen_read_close;
+    cdm->read_seek      = ff_concatgen_read_seek;
     cdm->read_timestamp = ff_concatgen_read_timestamp;
-    cdm->flags = NULL;
-    cdm->extensions = NULL;
-    cdm->value = NULL;
-    cdm->read_play = ff_concatgen_read_play;
-    cdm->read_pause = ff_concatgen_read_pause;
-    cdm->codec_tag = codec_concat_tags;
-    cdm->read_seek2 = ff_concatgen_read_seek;
-    cdm->metadata_conv = NULL;
-    cdm->next = NULL;
+    cdm->flags          = NULL;
+    cdm->extensions     = NULL;
+    cdm->value          = NULL;
+    cdm->read_play      = ff_concatgen_read_play;
+    cdm->read_pause     = ff_concatgen_read_pause;
+    cdm->codec_tag      = codec_concat_tags;
+    cdm->read_seek2     = ff_concatgen_read_seek;
+    cdm->metadata_conv  = NULL;
+    cdm->next           = NULL;
 }
 
 #if CONFIG_CONCAT_DEMUXER


More information about the FFmpeg-soc mailing list