summaryrefslogtreecommitdiff
path: root/libavcodec/alacdsp.h
Commit message (Collapse)AuthorAgeFilesLines
* lavc/alacdsp: RISC-V V decorrelate_stereoRĂ©mi Denis-Courmont2022-10-051-0/+1
| | | | | | | | | | | To avoid data dependencies, this does the following unroll, which requires one extra but probably free addition: coeff = (b * left_weight) >> decorr_shift; b += a; a -= coeff; b -= coeff; swap(a, b);
* x86/alacdsp: add simd optimized functionsJames Almer2015-10-061-0/+1
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/alacdec: split off decorrelate_stereo and append_extra_bits as alacdspJames Almer2015-10-041-0/+33
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>