Browse Source

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
tags/v0.6
Vladimir Voroshilov 16 years ago
parent
commit
e72c65f583
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/g729dec.c

+ 1
- 1
libavcodec/g729dec.c View File

@@ -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;
}


Loading…
Cancel
Save