Commit 0f34a725 authored by conrad's avatar conrad

Compile fix; missed a variable declaration in the last commit


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10303 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bf36a5fb
......@@ -225,6 +225,7 @@ static int mkv_write_header(AVFormatContext *s)
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment