Browse Source

fix index edit rate, inverse num and den

Originally committed as revision 17583 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
28c1720023
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mxfenc.c

+ 1
- 1
libavformat/mxfenc.c View File

@@ -1049,8 +1049,8 @@ static void mxf_write_index_table_segment(AVFormatContext *s)

// index edit rate
mxf_write_local_tag(pb, 8, 0x3F0B);
put_be32(pb, mxf->time_base.num);
put_be32(pb, mxf->time_base.den);
put_be32(pb, mxf->time_base.num);

// index start position
mxf_write_local_tag(pb, 8, 0x3F0C);


Loading…
Cancel
Save