[SCM] libav/experimental: Rename function to sha1_transform so it won't be confused with SHA-2 transform when it's added.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:48:46 UTC 2013


The following commit has been merged in the experimental branch:
commit 0d73abb86ab73d668bd314e68f4c21c86e95391a
Author: Kostya Shishkov <kostya.shishkov at gmail.com>
Date:   Thu Jul 9 07:29:03 2009 +0000

    Rename function to sha1_transform so it won't be confused with SHA-2 transform
    when it's added.
    
    Originally committed as revision 19389 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/sha1.c b/libavutil/sha1.c
index 0817212..ef7241f 100644
--- a/libavutil/sha1.c
+++ b/libavutil/sha1.c
@@ -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;
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list