changeset 1182:3fd51d88c897 libavformat

simplify
author michael
date Wed, 19 Jul 2006 08:39:50 +0000
parents c2f51d81c72e
children 5b04d98e11bb
files crc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/crc.c	Wed Jul 19 08:06:24 2006 +0000
+++ b/crc.c	Wed Jul 19 08:39:50 2006 +0000
@@ -29,7 +29,7 @@
     CRCState *crc = s->priv_data;
 
     /* init CRC */
-    crc->crcval = av_adler32_update(0, NULL, 0);
+    crc->crcval = 1;
 
     return 0;
 }