[FFmpeg-cvslog] r17424 - trunk/libavformat/mxfenc.c
bcoudurier
subversion
Wed Feb 18 08:14:24 CET 2009
Author: bcoudurier
Date: Wed Feb 18 08:14:23 2009
New Revision: 17424
Log:
fix partition index byte count
Modified:
trunk/libavformat/mxfenc.c
Modified: trunk/libavformat/mxfenc.c
==============================================================================
--- trunk/libavformat/mxfenc.c Wed Feb 18 08:13:57 2009 (r17423)
+++ trunk/libavformat/mxfenc.c Wed Feb 18 08:14:23 2009 (r17424)
@@ -1176,7 +1176,7 @@ static void mxf_write_partition(AVFormat
index_byte_count = 85 + 12+(s->nb_streams+1)*6 +
12+mxf->edit_units_count*(11+mxf->slice_count*4);
else if (mxf->edit_unit_byte_count && indexsid)
- index_byte_count = 85;
+ index_byte_count = 80;
if (index_byte_count) {
// add encoded ber length
More information about the ffmpeg-cvslog
mailing list