[FFmpeg-cvslog] r19389 - trunk/libavutil/sha1.c

kostya subversion
Thu Jul 9 09:29:03 CEST 2009


Author: kostya
Date: Thu Jul  9 09:29:03 2009
New Revision: 19389

Log:
Rename function to sha1_transform so it won't be confused with SHA-2 transform
when it's added.

Modified:
   trunk/libavutil/sha1.c

Modified: trunk/libavutil/sha1.c
==============================================================================
--- trunk/libavutil/sha1.c	Thu Jul  9 09:23:43 2009	(r19388)
+++ trunk/libavutil/sha1.c	Thu Jul  9 09:29:03 2009	(r19389)
@@ -49,7 +49,7 @@ const int av_sha1_size = sizeof(AVSHA1);
 
 /* Hash a single 512-bit block. This is the core of the algorithm. */
 
-static void transform(uint32_t state[5], const uint8_t buffer[64])
+static void sha1_transform(uint32_t state[5], const uint8_t buffer[64])
 {
     uint32_t block[80];
     unsigned int i, a, b, c, d, e;
@@ -134,7 +134,7 @@ void av_sha1_init(AVSHA1* ctx)
     ctx->state[2] = 0x98BADCFE;
     ctx->state[3] = 0x10325476;
     ctx->state[4] = 0xC3D2E1F0;
-    ctx->transform = transform;
+    ctx->transform = sha1_transform;
     ctx->count    = 0;
 }
 



More information about the ffmpeg-cvslog mailing list