summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-01-31 09:53:23 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-01-31 09:53:23 +0000
commit8090b222ac5e288a3346626b5ea9b3a77e16d542 (patch)
tree830e816386346497c78064898e6346824ebf6521
parent74334ae11e6ffba61c1919afd9dcb2bf30c034b6 (diff)
cosmetics, align vertically
Originally committed as revision 16898 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mxfenc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index 49bbd33c83..b02b960b71 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -39,11 +39,11 @@ static const int PAL_samples_per_frame[] = { 1920, 0 };
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 {
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 {