mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avutil/lfg: Document the AVLFG struct
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
20fad71247
commit
d6fea2ef22
@ -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…
Reference in New Issue
Block a user