changeset 9820:b72fbafc9408 libavcodec

Internal routine should not use name of standard function. Use g729_prng instead.
author voroshil
date Sat, 06 Jun 2009 05:38:09 +0000
parents fbc565735c4d
children 0813b30e7db9
files g729dec.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/g729dec.c	Fri Jun 05 17:11:46 2009 +0000
+++ b/g729dec.c	Sat Jun 06 05:38:09 2009 +0000
@@ -85,7 +85,7 @@
 /**
  * \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;
 }