Cosmetics: align nicely for better readibility

Originally committed as revision 10296 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
David Conrad 2007-09-05 00:22:41 +00:00
parent cf4f763be1
commit dbf653f766
1 changed files with 7 additions and 7 deletions

View File

@ -113,13 +113,13 @@ static int mkv_write_header(AVFormatContext *s)
int i;
ebml_header = start_ebml_master(pb, EBML_ID_HEADER);
put_ebml_uint(pb, EBML_ID_EBMLVERSION, 1);
put_ebml_uint(pb, EBML_ID_EBMLREADVERSION, 1);
put_ebml_uint(pb, EBML_ID_EBMLMAXIDLENGTH, 4);
put_ebml_uint(pb, EBML_ID_EBMLMAXSIZELENGTH, 8);
put_ebml_string(pb, EBML_ID_DOCTYPE, "matroska");
put_ebml_uint(pb, EBML_ID_DOCTYPEVERSION, 1);
put_ebml_uint(pb, EBML_ID_DOCTYPEREADVERSION, 1);
put_ebml_uint (pb, EBML_ID_EBMLVERSION , 1);
put_ebml_uint (pb, EBML_ID_EBMLREADVERSION , 1);
put_ebml_uint (pb, EBML_ID_EBMLMAXIDLENGTH , 4);
put_ebml_uint (pb, EBML_ID_EBMLMAXSIZELENGTH , 8);
put_ebml_string (pb, EBML_ID_DOCTYPE , "matroska");
put_ebml_uint (pb, EBML_ID_DOCTYPEVERSION , 1);
put_ebml_uint (pb, EBML_ID_DOCTYPEREADVERSION , 1);
end_ebml_master(pb, ebml_header);
mkv->segment = start_ebml_master(pb, MATROSKA_ID_SEGMENT);