[FFmpeg-cvslog] avutil/softfloat: Basic documentation for av_sincos_sf()

Michael Niedermayer git at videolan.org
Fri Dec 22 01:52:01 EET 2023


ffmpeg | branch: release/4.4 | Michael Niedermayer <michael at niedermayer.cc> | Tue Jun 20 01:26:33 2023 +0200| [61d3c0bbc312055c8d56c8031492fb12067a402f] | committer: Michael Niedermayer

avutil/softfloat: Basic documentation for av_sincos_sf()

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 4aa1a42a91438b7107d2d77db1fc5ca95c27740c)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 libavutil/softfloat.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index 1520027ddc..399ca6d682 100644
--- a/libavutil/softfloat.h
+++ b/libavutil/softfloat.h
@@ -236,6 +236,10 @@ static av_always_inline SoftFloat av_sqrt_sf(SoftFloat val)
 
 /**
  * Rounding-to-nearest used.
+ *
+ * @param a angle in units of (1ULL<<30)/M_PI radians
+ * @param s pointer to where   sine in units of (1<<30) is returned
+ * @param c pointer to where cosine in units of (1<<30) is returned
  */
 static av_unused void av_sincos_sf(int a, int *s, int *c)
 {



More information about the ffmpeg-cvslog mailing list