[FFmpeg-cvslog] r17144 - trunk/libavformat/mxfenc.c
bcoudurier
subversion
Wed Feb 11 01:56:27 CET 2009
Author: bcoudurier
Date: Wed Feb 11 01:56:27 2009
New Revision: 17144
Log:
fix body offset
Modified:
trunk/libavformat/mxfenc.c
Modified: trunk/libavformat/mxfenc.c
==============================================================================
--- trunk/libavformat/mxfenc.c Wed Feb 11 01:25:30 2009 (r17143)
+++ trunk/libavformat/mxfenc.c Wed Feb 11 01:56:27 2009 (r17144)
@@ -124,7 +124,6 @@ typedef struct MXFContext {
uint64_t *body_partition_offset;
unsigned body_partitions_count;
int last_key_index; ///< index of last key frame
- uint64_t body_offset;
} MXFContext;
static const uint8_t uuid_base[] = { 0xAD,0xAB,0x44,0x24,0x2f,0x25,0x4d,0xc7,0x92,0xff,0x29,0xbd };
@@ -1029,8 +1028,6 @@ static void mxf_write_partition(AVFormat
// add encoded ber length
index_byte_count += 16 + klv_ber_length(index_byte_count);
index_byte_count += klv_fill_size(index_byte_count);
-
- mxf->body_offset += url_ftell(pb) - mxf->index_entries[0].offset;
}
if (!memcmp(key, body_partition_key, 16)) {
@@ -1071,8 +1068,13 @@ static void mxf_write_partition(AVFormat
put_be32(pb, index_byte_count ? indexsid : 0); // indexSID
// BodyOffset
- if (bodysid) put_be64(pb, mxf->body_offset);
- else put_be64(pb, 0);
+ if (bodysid && mxf->edit_units_count) {
+ uint64_t partition_end = url_ftell(pb) + 8 + 4 + 16 + 8 +
+ 16*mxf->essence_container_count;
+ put_be64(pb, partition_end + klv_fill_size(partition_end) +
+ index_byte_count - mxf->first_edit_unit_offset);
+ } else
+ put_be64(pb, 0);
put_be32(pb, bodysid); // bodySID
More information about the ffmpeg-cvslog
mailing list