ffmpeg | branch: master | Michael Niedermayer <mich...@niedermayer.cc> | Sun 
Oct 20 12:12:12 2019 +0200| [d6fea2ef221a2f438cc55e82c61d0375750edf94] | 
committer: Michael Niedermayer

avutil/lfg: Document the AVLFG struct

Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d6fea2ef221a2f438cc55e82c61d0375750edf94
---

 libavutil/lfg.h | 6 ++++++
 1 file changed, 6 insertions(+)

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;

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to