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
This commit is contained in:
Vladimir Voroshilov 2009-06-06 05:38:09 +00:00
parent 12d7c0793b
commit e72c65f583
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ typedef struct
/** /**
* \brief pseudo random number generator * \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; return 31821 * value + 13849;
} }