diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-07-04 07:56:58 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-07-04 07:56:58 +0000 |
commit | df1550f0815ff3513c82d62307b466a5afdc6e5c (patch) | |
tree | 01c9d8e8c6927e1920ae022e4bd11a78abe9b6d6 | |
parent | 76b092e2072d0b9e1c91564e0723a871eb29423b (diff) | |
download | ffmpeg-df1550f0815ff3513c82d62307b466a5afdc6e5c.tar.gz |
set index duration to 0 for cbr, specifying whole container coverage
Originally committed as revision 19338 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mxfenc.c | 5 | ||||
-rw-r--r-- | tests/lavf.regression.ref | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 928f3e1531..e71593e404 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -1072,7 +1072,10 @@ static void mxf_write_index_table_segment(AVFormatContext *s) // index duration mxf_write_local_tag(pb, 8, 0x3F0D); - put_be64(pb, mxf->edit_units_count); + if (mxf->edit_unit_byte_count) + put_be64(pb, 0); // index table covers whole container + else + put_be64(pb, mxf->edit_units_count); // edit unit byte count mxf_write_local_tag(pb, 4, 0x3F05); diff --git a/tests/lavf.regression.ref b/tests/lavf.regression.ref index 4645c643ca..e4ae9c7c20 100644 --- a/tests/lavf.regression.ref +++ b/tests/lavf.regression.ref @@ -12,7 +12,7 @@ bfdec98337e6a9d89dc648d1e65a41db *./tests/data/b-lavf.mpg dfae2e9e7572c000bec1edb8ea3e6cf3 *./tests/data/b-lavf.mxf 535097 ./tests/data/b-lavf.mxf ./tests/data/b-lavf.mxf CRC=0xd7ff387d -0cf22217d46b55c4fd178890305f9025 *./tests/data/b-lavf.mxf_d10 +8e70bc1e7602bb07f02159d1a2dd69cd *./tests/data/b-lavf.mxf_d10 5330989 ./tests/data/b-lavf.mxf_d10 ./tests/data/b-lavf.mxf_d10 CRC=0xd241c8b6 2e9bd99fbb121ae4887109e3a4169acd *./tests/data/b-lavf.ts |