summaryrefslogtreecommitdiff
path: root/libavutil/lfg.h
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2022-09-25 00:13:53 +0200
committerAnton Khirnov <anton@khirnov.net>2022-10-17 09:56:47 +0200
commit6a1ad7a7524b5e80df214feddb65fb93f3e4ae6c (patch)
tree912bc5d83ee7b658d7400894f038bd5b4ef0555a /libavutil/lfg.h
parenta679b875705e6e720a7a110dfea05061b47fa7fe (diff)
downloadffmpeg-6a1ad7a7524b5e80df214feddb65fb93f3e4ae6c.tar.gz
avutil/lfg: Add doxy for missing argument
Diffstat (limited to 'libavutil/lfg.h')
-rw-r--r--libavutil/lfg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/lfg.h b/libavutil/lfg.h
index 9a1e277acd..16917827c6 100644
--- a/libavutil/lfg.h
+++ b/libavutil/lfg.h
@@ -73,6 +73,7 @@ static inline unsigned int av_mlfg_get(AVLFG *c){
* Get the next two numbers generated by a Box-Muller Gaussian
* generator using the random numbers issued by lfg.
*
+ * @param lfg pointer to the contex structure
* @param out array where the two generated numbers are placed
*/
void av_bmg_get(AVLFG *lfg, double out[2]);