diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2003-04-12 03:04:08 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2003-04-12 03:04:08 +0000 |
commit | d86852d11cb1b30745c2ba72890be0779c6ad781 (patch) | |
tree | 1abdf5e12549aadea233f1638e12912720dff5ba | |
parent | 03ff071af9d9a40cb3dae7a0989d7fa8a51aba8b (diff) | |
download | ffmpeg-d86852d11cb1b30745c2ba72890be0779c6ad781.tar.gz |
Clear out an unused field in the created AVI file. This helps make
the MD5 checksums *much* more predictable!!
Originally committed as revision 1762 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avienc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c index 5ab5bfd8a1..77dccac0a4 100644 --- a/libavformat/avienc.c +++ b/libavformat/avienc.c @@ -378,7 +378,8 @@ static int avi_write_header(AVFormatContext *s) 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); |