diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-10-20 12:12:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-11-15 12:25:47 +0100 |
commit | 5ebee49b343ba79449074b58d86e6b35f2b10667 (patch) | |
tree | 573e50d1fe5b2509ec394c8b86dd71bb3b9e3b43 | |
parent | a687664dd48949e9483a715085f214dbe66721cb (diff) | |
download | ffmpeg-5ebee49b343ba79449074b58d86e6b35f2b10667.tar.gz |
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>
-rw-r--r-- | libavutil/lfg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/lfg.h b/libavutil/lfg.h index 03f779ad8a..ab38a8a0df 100644 --- a/libavutil/lfg.h +++ b/libavutil/lfg.h @@ -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; |