summaryrefslogtreecommitdiff
path: root/sbc/sbc.c
Commit message (Expand)AuthorAgeFilesLines
* sbc: use an uint16 to store frame length in internal frame structureAurélien Zanelli2014-10-241-1/+1
* sbc: fix frame length calculation for DUAL_CHANNEL modeAurélien Zanelli2014-10-241-1/+1
* sbc: Add sbc_reinit_a2dpLuiz Augusto von Dentz2014-01-231-14/+35
* TODO: Update entries in TODO listMarcel Holtmann2014-01-221-8/+0
* sbc: Use bool variable for priv->initMarcel Holtmann2014-01-221-4/+4
* sbc: Add sbc_init_a2dpLuiz Augusto von Dentz2014-01-211-0/+144
* sbc: Add support for mSBC frame headerFrédéric Dalleau2013-04-151-90/+138
* sbc: Declare and implement sbc_init_msbcFrédéric Dalleau2013-04-151-0/+34
* sbc: Add a private boolean flag to enable 15 block encodingFrédéric Dalleau2013-04-151-8/+29
* sbc: Rename sbc_analyze_4b_xx to sbc_analyze_xxFrédéric Dalleau2013-04-151-2/+2
* sbc: Break 4 blocks processing to variable stepsFrédéric Dalleau2013-04-151-8/+11
* sbc: Add encoder_state to analysis functionsFrédéric Dalleau2013-04-151-2/+2
* sbc: Use SBC_EXPORT instead of LIB_EXPORTMarcel Holtmann2012-07-291-10/+10
* sbc: Export public functions as APIMarcel Holtmann2012-07-291-10/+11
* sbc: Reduce for-loop induced indentation in sbc_unpack_frameJohan Hedberg2012-07-291-16/+20
* sbc: overflow bugfix and audio decoding quality improvementSiarhei Siamashka2012-07-291-4/+7
* sbc: detect when bitpool has changedLuiz Augusto von Dentz2012-07-291-1/+7
* sbc: faster 'sbc_calculate_bits' functionSiarhei Siamashka2012-07-291-15/+28
* sbc: Fix signedness of libsbc parametersJohan Hedberg2012-07-291-4/+5
* sbc: ARM NEON optimization for scale factors calculationSiarhei Siamashka2012-07-291-1/+1
* sbc: new 'sbc_calc_scalefactors_j' function added to sbc primitivesSiarhei Siamashka2012-07-291-68/+24
* sbc: Fix redundant null check on calling free()Gustavo F. Padovan2012-07-291-2/+1
* sbc: Update Nokia copyrightsJohan Hedberg2012-07-291-0/+1
* sbc: Update copyright informationMarcel Holtmann2012-07-291-1/+1
* sbc: added saturated clipping of decoder output to 16-bitSiarhei Siamashka2012-07-291-5/+15
* sbc: Do some coding style cleanupsMarcel Holtmann2012-07-291-16/+12
* sbc: fix up sbc.h prototypes to use const/size_t wherever applicableLennart Poettering2012-07-291-9/+13
* sbc: ensure 16-byte buffer position alignment for 4 subbands encodingSiarhei Siamashka2012-07-291-1/+1
* sbc: Fix misuse of 'frame.joint' when estimating the frame length.Luiz Augusto von Dentz2012-07-291-17/+12
* sbc: don't dereference sbc pointer if NULLMarc-André Lureau2012-07-291-2/+2
* sbc: provide implementation info as a readable stringMarc-André Lureau2012-07-291-0/+14
* sbc: Fix SBC to compile cleanly with -Wsign-compareMarcel Holtmann2012-07-291-4/+7
* sbc: Fix for SBC encoding with block sizes other than 16Siarhei Siamashka2012-07-291-6/+13
* sbc: SBC encoder scale factors calculation optimized with __builtin_clzSiarhei Siamashka2012-07-291-16/+5
* sbc: Performance optimizations for input data processing in SBC encoderSiarhei Siamashka2012-07-291-26/+29
* sbc: Use of -funroll-loops option to improve SBC encoder performanceSiarhei Siamashka2012-07-291-16/+33
* sbc: Coding style fixesSiarhei Siamashka2012-07-291-21/+32
* sbc: SBC arrays and constant tables aligned at 16 byte boundary for SIMDSiarhei Siamashka2012-07-291-10/+16
* sbc: SIMD-friendly variant of SBC encoder analysis filterSiarhei Siamashka2012-07-291-153/+2
* sbc: Fix for big endian problems in SBC codecSiarhei Siamashka2012-07-291-12/+0
* sbc: Fixed correct handling of frame sizes in the encoderChristian Hoene2012-07-291-3/+3
* sbc: Use of constant shift in SBC quantization code to make it fasterSiarhei Siamashka2012-07-291-10/+13
* sbc: Update copyright informationMarcel Holtmann2012-07-291-1/+1
* sbc: Added possibility to analyze 4 blocks at once in SBC encoderSiarhei Siamashka2012-07-291-49/+82
* sbc: New SBC analysis filter function to replace current broken codeSiarhei Siamashka2012-07-291-198/+108
* sbc: Fixed subbands selection for joint-stereo in SBC encoderSiarhei Siamashka2012-07-291-4/+4
* sbc: Don't decode a frame if it is too smallMarcel Holtmann2012-07-291-0/+3
* sbc: Remove unnecessary code and fix a coding style.Luiz Augusto von Dentz2012-07-291-14/+11
* sbc: Fix for overflow bug in SBC quantization codeSiarhei Siamashka2012-07-291-1/+1
* sbc: Bitstream writing optimization for SBC encoderSiarhei Siamashka2012-07-291-28/+37