[FFmpeg-cvslog] r10318 - trunk/libavformat/matroskaenc.c

conrad subversion
Wed Sep 5 02:23:23 CEST 2007


Author: conrad
Date: Wed Sep  5 02:23:23 2007
New Revision: 10318

Log:
Calculate the size of a SimpleBlock before writing it so that bytes aren't wasted in writing the size


Modified:
   trunk/libavformat/matroskaenc.c

Modified: trunk/libavformat/matroskaenc.c
==============================================================================
--- trunk/libavformat/matroskaenc.c	(original)
+++ trunk/libavformat/matroskaenc.c	Wed Sep  5 02:23:23 2007
@@ -428,7 +428,6 @@ static int mkv_write_packet(AVFormatCont
 {
     MatroskaMuxContext *mkv = s->priv_data;
     ByteIOContext *pb = &s->pb;
-    offset_t block;
 
     // start a new cluster every 5 MB or 5 sec
     if (url_ftell(pb) > mkv->cluster + 5*1024*1024 || pkt->pts > mkv->cluster_pts + 5000) {
@@ -442,12 +441,12 @@ static int mkv_write_packet(AVFormatCont
         mkv->cluster_pts = pkt->pts;
     }
 
-    block = start_ebml_master(pb, MATROSKA_ID_SIMPLEBLOCK);
+    put_ebml_id(pb, MATROSKA_ID_SIMPLEBLOCK);
+    put_ebml_size(pb, pkt->size + 4, 0);
     put_byte(pb, 0x80 | (pkt->stream_index + 1));     // this assumes stream_index is less than 126
     put_be16(pb, pkt->pts - mkv->cluster_pts);
     put_byte(pb, !!(pkt->flags & PKT_FLAG_KEY));
     put_buffer(pb, pkt->data, pkt->size);
-    end_ebml_master(pb, block);
 
     mkv->duration = pkt->pts + pkt->duration;
     return 0;




More information about the ffmpeg-cvslog mailing list