comparison g729dec.c @ 9820:b72fbafc9408 libavcodec

Internal routine should not use name of standard function. Use g729_prng instead.
author voroshil
date Sat, 06 Jun 2009 05:38:09 +0000
parents fbc565735c4d
children 4a5f2453973d
comparison
equal deleted inserted replaced
9819:fbc565735c4d 9820:b72fbafc9408
83 } G729_format_description; 83 } G729_format_description;
84 84
85 /** 85 /**
86 * \brief pseudo random number generator 86 * \brief pseudo random number generator
87 */ 87 */
88 static inline uint16_t random(uint16_t value) 88 static inline uint16_t g729_prng(uint16_t value)
89 { 89 {
90 return 31821 * value + 13849; 90 return 31821 * value + 13849;
91 } 91 }
92 92
93 /** 93 /**