summaryrefslogtreecommitdiff
path: root/libavformat/mxfenc.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-06-30 07:43:32 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-06-30 07:43:32 +0000
commitb399b932b764e27f10aaff3f96e276acbb7bd984 (patch)
tree1cf83ba95a68e906b9f931acc8883e08433d5221 /libavformat/mxfenc.c
parent61f9e3c16a880bb2084166843dec03ee4aef73f8 (diff)
cosmetics, change case and comments alignment
Originally committed as revision 19305 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r--libavformat/mxfenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index ba67a8ba54..2a76c1f1d7 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -63,10 +63,10 @@ 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;
- 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
int temporal_reordering;
AVRational aspect_ratio; ///< display aspect ratio
int closed_gop; ///< gop is closed, used in mpeg-2 frame parsing
@@ -1119,7 +1119,7 @@ static void mxf_write_index_table_segment(AVFormatContext *s)
if (mxf->index_entries[j].flags & 0x10) { // backward prediction
// next is not b, so is reordered
if (!(mxf->index_entries[i+1].flags & 0x10)) {
- if ((mxf->index_entries[i].flags & 0x11) == 0) // i frame
+ if ((mxf->index_entries[i].flags & 0x11) == 0) // I frame
temporal_offset = 0;
else
temporal_offset = -temporal_offset;
@@ -1309,7 +1309,7 @@ static int mxf_parse_mpeg2_frame(AVFormatContext *s, AVStream *st, AVPacket *pkt
for(i = 0; i < pkt->size - 4; i++) {
c = (c<<8) + pkt->data[i];
- if (c == 0x1B5) {
+ if (c == 0x1b5) {
if ((pkt->data[i+1] & 0xf0) == 0x10) { // seq ext
st->codec->profile = pkt->data[i+1] & 0x07;
st->codec->level = pkt->data[i+2] >> 4;