changeset 4323:982d24f6d8f6 libavformat

cosmetics, align vertically
author bcoudurier
date Sat, 31 Jan 2009 09:53:23 +0000
parents 0d40ba62d7d7
children 00db0c2b2cde
files mxfenc.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/mxfenc.c	Sat Jan 31 09:23:50 2009 +0000
+++ b/mxfenc.c	Sat Jan 31 09:53:23 2009 +0000
@@ -39,11 +39,11 @@
 
 typedef struct {
     AVFifoBuffer fifo;
-    unsigned fifo_size; ///< current fifo size allocated
-    uint64_t dts; ///< current dts
-    int sample_size; ///< size of one sample all channels included
+    unsigned fifo_size;           ///< current fifo size allocated
+    uint64_t dts;                 ///< current dts
+    int sample_size;              ///< size of one sample all channels included
     const int *samples_per_frame; ///< must be 0 terminated
-    const int *samples; ///< current samples per frame, pointer to samples_per_frame
+    const int *samples;           ///< current samples per frame, pointer to samples_per_frame
 } AudioInterleaveContext;
 
 typedef struct {
@@ -54,11 +54,11 @@
 typedef struct {
     AudioInterleaveContext aic;
     UID track_essence_element_key;
-    int index; //<<< index in mxf_essence_container_uls table
+    int index;            //<<< index in mxf_essence_container_uls table
     const UID *codec_ul;
     int64_t duration;
-    int order; ///< interleaving order if dts are equal
-    int interlaced; ///< wether picture is interlaced
+    int order;            ///< interleaving order if dts are equal
+    int interlaced;       ///< wether picture is interlaced
 } MXFStreamContext;
 
 typedef struct {