summaryrefslogtreecommitdiff
path: root/libavcodec/g729dec.c
diff options
context:
space:
mode:
authorVladimir Voroshilov <voroshil@gmail.com>2009-06-06 05:38:09 +0000
committerVladimir Voroshilov <voroshil@gmail.com>2009-06-06 05:38:09 +0000
commite72c65f583a8a141622b007bc10ee0a8b8e5d80b (patch)
tree89198bd897ad5d2f285f9dc4701d9e5879b9c6c8 /libavcodec/g729dec.c
parent12d7c0793be4348751ba1303d8cbbb0750f1f33b (diff)
Internal routine should not use name of standard function.
Use g729_prng instead. Originally committed as revision 19120 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r--libavcodec/g729dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 488970f847..a8178a2f6c 100644
--- a/libavcodec/g729dec.c
+++ b/libavcodec/g729dec.c
@@ -85,7 +85,7 @@ typedef struct
/**
* \brief pseudo random number generator
*/
-static inline uint16_t random(uint16_t value)
+static inline uint16_t g729_prng(uint16_t value)
{
return 31821 * value + 13849;
}