changeset 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 68b0e1708839
children d7ab50ab9376
files avienc.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/avienc.c	Tue Apr 08 09:56:19 2003 +0000
+++ b/avienc.c	Sat Apr 12 03:04:08 2003 +0000
@@ -378,7 +378,8 @@
     put_tag(pb, "odml");
     put_tag(pb, "dmlh");
     put_le32(pb, 248);
-    url_fskip(pb, 248);
+    for (i = 0; i < 248; i+= 4)
+        put_le32(pb, 0);
     end_tag(pb, avi->odml_list);
 
     end_tag(pb, list1);