Commit d6fea2ef authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/lfg: Document the AVLFG struct

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 20fad712
......@@ -24,6 +24,12 @@
#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 {
unsigned int state[64];
int index;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment