summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}