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

conrad subversion
Wed Sep 5 02:22:54 CEST 2007


Author: conrad
Date: Wed Sep  5 02:22:54 2007
New Revision: 10303

Log:
Compile fix; missed a variable declaration in the last commit


Modified:
   trunk/libavformat/matroskaenc.c

Modified: trunk/libavformat/matroskaenc.c
==============================================================================
--- trunk/libavformat/matroskaenc.c	(original)
+++ trunk/libavformat/matroskaenc.c	Wed Sep  5 02:22:54 2007
@@ -225,6 +225,7 @@ static int mkv_write_header(AVFormatCont
 static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
     ByteIOContext *pb = &s->pb;
+    offset_t block;
 
     block = start_ebml_master(pb, MATROSKA_ID_SIMPLEBLOCK);
     put_byte(pb, 0x80 | pkt->stream_index);     // this assumes stream_index is less than 127




More information about the ffmpeg-cvslog mailing list