Browse code

cosmetics: fix indentation/alignment in AVCodec declarations

Diego Biurrun authored on 2011/08/04 06:27:50
Showing 4 changed files
... ...
@@ -229,5 +229,5 @@ AVCodec ff_eightbps_decoder = {
229 229
     .close          = decode_end,
230 230
     .decode         = decode_frame,
231 231
     .capabilities   = CODEC_CAP_DR1,
232
-        .long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
232
+    .long_name      = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
233 233
 };
... ...
@@ -207,6 +207,6 @@ AVCodec ff_tscc_decoder = {
207 207
     .close          = decode_end,
208 208
     .decode         = decode_frame,
209 209
     .capabilities   = CODEC_CAP_DR1,
210
-        .long_name = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
210
+    .long_name      = NULL_IF_CONFIG_SMALL("TechSmith Screen Capture Codec"),
211 211
 };
212 212
 
... ...
@@ -134,10 +134,10 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
134 134
 }
135 135
 
136 136
 AVCodec ff_xsub_decoder = {
137
-    .name           = "xsub",
138
-    .type           = AVMEDIA_TYPE_SUBTITLE,
139
-    .id             = CODEC_ID_XSUB,
140
-    .init           = decode_init,
141
-    .decode         = decode_frame,
137
+    .name      = "xsub",
138
+    .type      = AVMEDIA_TYPE_SUBTITLE,
139
+    .id        = CODEC_ID_XSUB,
140
+    .init      = decode_init,
141
+    .decode    = decode_frame,
142 142
     .long_name = NULL_IF_CONFIG_SMALL("XSUB"),
143 143
 };
... ...
@@ -211,10 +211,10 @@ static av_cold int xsub_encoder_init(AVCodecContext *avctx)
211 211
 }
212 212
 
213 213
 AVCodec ff_xsub_encoder = {
214
-    .name           = "xsub",
215
-    .type           = AVMEDIA_TYPE_SUBTITLE,
216
-    .id             = CODEC_ID_XSUB,
217
-    .init           = xsub_encoder_init,
218
-    .encode         = xsub_encode,
214
+    .name      = "xsub",
215
+    .type      = AVMEDIA_TYPE_SUBTITLE,
216
+    .id        = CODEC_ID_XSUB,
217
+    .init      = xsub_encoder_init,
218
+    .encode    = xsub_encode,
219 219
     .long_name = NULL_IF_CONFIG_SMALL("DivX subtitles (XSUB)"),
220 220
 };