aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/arm/float_dsp_init_neon.c
Commit message (Collapse)AuthorAgeFilesLines
* Reinstate proper FFmpeg license for all files.Thilo Borgmann2013-08-301-4/+4
|
* avutil: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-041-1/+2
|
* floatdsp: move scalarproduct_float from dsputil to avfloatdsp.Ronald S. Bultje2013-01-221-0/+3
| | | | This makes the aac decoder and all voice codecs independent of dsputil.
* floatdsp: move butterflies_float from dsputil to avfloatdsp.Ronald S. Bultje2013-01-221-0/+3
| | | | | This makes wmadec/enc, twinvq and mpegaudiodec (i.e. mp2/mp3) independent of dsputil.
* floatdsp: move vector_fmul_reverse from dsputil to avfloatdsp.Ronald S. Bultje2013-01-221-0/+4
| | | | | | Now, nellymoserenc and aacenc no longer depends on dsputil. Independent of this patch, wmaprodec also does not depend on dsputil, so I removed it from there also.
* floatdsp: move vector_fmul_add from dsputil to avfloatdsp.Ronald S. Bultje2013-01-221-0/+4
|
* lavc: Move vector_fmul_window to AVFloatDSPContextJustin Ruggles2013-01-161-0/+4
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* dsputil: move vector_fmul_scalar() to AVFloatDSPContext in libavutilJustin Ruggles2012-11-261-0/+4
|
* float_dsp: Move vector_fmac_scalar() from libavcodec to libavutilJustin Ruggles2012-06-181-0/+4
|
* ARM: fix float_dsp breakage from d5a7229Mans Rullgard2012-06-081-2/+2
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add a float DSP framework to libavutilJustin Ruggles2012-06-081-0/+32
Move vector_fmul() from DSPContext to AVFloatDSPContext.