This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
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
12d7c0793b
commit
e72c65f583
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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;
}
Write
Preview
Loading…
Cancel
Save