diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-06 05:38:09 +0000 |
---|---|---|
committer | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-06 05:38:09 +0000 |
commit | e72c65f583a8a141622b007bc10ee0a8b8e5d80b (patch) | |
tree | 89198bd897ad5d2f285f9dc4701d9e5879b9c6c8 | |
parent | 12d7c0793be4348751ba1303d8cbbb0750f1f33b (diff) | |
download | ffmpeg-e72c65f583a8a141622b007bc10ee0a8b8e5d80b.tar.gz |
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
-rw-r--r-- | libavcodec/g729dec.c | 2 |
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; } |