mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avutil/lfg: Document the AVLFG struct
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit d6fea2ef221a2f438cc55e82c61d0375750edf94) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a687664dd4
commit
5ebee49b34
@ -24,6 +24,12 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Context structure for the Lagged Fibonacci PRNG.
|
||||||
|
* The exact layout, types and content of this struct may change and should
|
||||||
|
* not be accessed directly. Only its sizeof() is guranteed to stay the same
|
||||||
|
* to allow easy instanciation.
|
||||||
|
*/
|
||||||
typedef struct AVLFG {
|
typedef struct AVLFG {
|
||||||
unsigned int state[64];
|
unsigned int state[64];
|
||||||
int index;
|
int index;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user