[FFmpeg-cvslog] r19120 - trunk/libavcodec/g729dec.c

voroshil subversion
Sat Jun 6 07:38:09 CEST 2009


Author: voroshil
Date: Sat Jun  6 07:38:09 2009
New Revision: 19120

Log:
Internal routine should not use name of standard function.
Use g729_prng instead.

Modified:
   trunk/libavcodec/g729dec.c

Modified: trunk/libavcodec/g729dec.c
==============================================================================
--- trunk/libavcodec/g729dec.c	Sat Jun  6 01:39:11 2009	(r19119)
+++ trunk/libavcodec/g729dec.c	Sat Jun  6 07:38:09 2009	(r19120)
@@ -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;
 }



More information about the ffmpeg-cvslog mailing list