[FFmpeg-soc] [soc]: r3445 - mxf/mxfenc.c
spyfeng
subversion at mplayerhq.hu
Mon Aug 18 11:44:58 CEST 2008
Author: spyfeng
Date: Mon Aug 18 11:44:58 2008
New Revision: 3445
Log:
rename this_partition to byte_position for more readable and understandable
Modified:
mxf/mxfenc.c
Modified: mxf/mxfenc.c
==============================================================================
--- mxf/mxfenc.c (original)
+++ mxf/mxfenc.c Mon Aug 18 11:44:58 2008
@@ -898,12 +898,12 @@ static int mux_write_footer(AVFormatCont
{
ByteIOContext *pb = s->pb;
- int64_t this_partition = url_ftell(pb);
- mxf_write_partition(s, this_partition, 0, footer_partition_key);
+ int64_t byte_position= url_ftell(pb);
+ mxf_write_partition(s, byte_position, 0, footer_partition_key);
put_flush_packet(pb);
- mxf_update_header_partition(s, this_partition);
+ mxf_update_header_partition(s, byte_position);
mxf_free(s);
return 0;
}
More information about the FFmpeg-soc
mailing list