aboutsummaryrefslogtreecommitdiffstats
path: root/tests/checkasm/aacencdsp.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/aacenc: Move initializing DSP out of aacenc.cAndreas Rheinhardt2024-03-021-5/+5
| | | | | | | | | | | | Otherwise aacenc.o gets pulled in by the aacencdsp checkasm test and it in turn pulls the rest of lavc in. Besides being bad size-wise this also has the downside that it pulls in avpriv_(cga|vga16)_font from libavutil which are marked as being imported from another library when building libavcodec as a DLL and this breaks checkasm because it links both lavc and lavu statically. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* tests/checkasm/aacencdsp: Use float_near_ulp_array() for abs_pow34() testMichael Niedermayer2024-01-241-1/+1
| | | | | | Fixes: ticket/10818 Approved-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* checkasm: test for abs_pow34sunyuechi2023-12-111-0/+70
Signed-off-by: RĂ©mi Denis-Courmont <remi@remlab.net>