Mercurial > libavformat.hg
comparison avienc.c @ 104:1f218c4b0e2e libavformat
Clear out an unused field in the created AVI file. This helps make
the MD5 checksums *much* more predictable!!
author | philipjsg |
---|---|
date | Sat, 12 Apr 2003 03:04:08 +0000 |
parents | c48108fe538e |
children | d7ab50ab9376 |
comparison
equal
deleted
inserted
replaced
103:68b0e1708839 | 104:1f218c4b0e2e |
---|---|
376 /* AVI could become an OpenDML one, if it grows beyond 2Gb range */ | 376 /* AVI could become an OpenDML one, if it grows beyond 2Gb range */ |
377 avi->odml_list = start_tag(pb, "JUNK"); | 377 avi->odml_list = start_tag(pb, "JUNK"); |
378 put_tag(pb, "odml"); | 378 put_tag(pb, "odml"); |
379 put_tag(pb, "dmlh"); | 379 put_tag(pb, "dmlh"); |
380 put_le32(pb, 248); | 380 put_le32(pb, 248); |
381 url_fskip(pb, 248); | 381 for (i = 0; i < 248; i+= 4) |
382 put_le32(pb, 0); | |
382 end_tag(pb, avi->odml_list); | 383 end_tag(pb, avi->odml_list); |
383 | 384 |
384 end_tag(pb, list1); | 385 end_tag(pb, list1); |
385 | 386 |
386 avi->movi_list = start_tag(pb, "LIST"); | 387 avi->movi_list = start_tag(pb, "LIST"); |