From e72c65f583a8a141622b007bc10ee0a8b8e5d80b Mon Sep 17 00:00:00 2001 From: Vladimir Voroshilov Date: Sat, 6 Jun 2009 05:38:09 +0000 Subject: 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 --- libavcodec/g729dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/g729dec.c') 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; } -- cgit v1.2.3