Message ID | 20230619233950.25178-1-michael@niedermayer.cc |
---|---|
State | Accepted |
Commit | 4aa1a42a91438b7107d2d77db1fc5ca95c27740c |
Headers | show |
Series | [FFmpeg-devel] avutil/softfloat: Basic documentation for av_sincos_sf() | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | fail | Make fate failed |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | fail | Make fate failed |
On Tue, Jun 20, 2023 at 01:39:50AM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> > --- > libavutil/softfloat.h | 4 ++++ > 1 file changed, 4 insertions(+) will apply [...]
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) {
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> --- libavutil/softfloat.h | 4 ++++ 1 file changed, 4 insertions(+)