Skip to content
Snippets Groups Projects
  1. Dec 06, 2014
  2. Oct 12, 2014
  3. Sep 26, 2014
  4. Aug 17, 2014
  5. Aug 10, 2014
  6. Aug 07, 2014
  7. Jul 23, 2014
  8. Jul 03, 2014
  9. Jul 02, 2014
    • Tristan Matthews's avatar
      build testresample · 0234d452
      Tristan Matthews authored
      0234d452
    • Jyri Sarha's avatar
      resample: Add NEON optimized inner_product_single for floating point · 4e6faa45
      Jyri Sarha authored
      Also adds inline asm implementations of WORD2INT(x) macro for fixed
      and floating point.
      4e6faa45
    • Jyri Sarha's avatar
      resample: Add NEON optimized inner_product_single for fixed point · 0e5d424f
      Jyri Sarha authored
      Semantics of inner_product_single have also been changed to contain
      the final right shift and saturation so it can also be implemented in
      the optimal way for the used platform. This change affects fixed point
      calculations only.
      
      I also added a new fixed point macro SATURATE32PSHR(x, shift, a). It
      does pretty much the same thing as SATURATE32(PSHR32(x, shift), a),
      but it avoids over flowing in rounding up phase in the rare occasion
      where x has already been saturated. It should also be slightly faster.
      0e5d424f
    • Jyri Sarha's avatar
      configure.ac: Add ARM NEON support · 46b1545c
      Jyri Sarha authored
      Use --enable-neon to force NEON optimization on. The auto detection
      should also work if your CFLAGS supports NEON.
      46b1545c
    • Jyri Sarha's avatar
      resample: Calculate full sinc table (e.g. no sinc interpolation) · 0280b024
      Jyri Sarha authored
      On many systems taking couple of kilo-bytes for full sinc table is not
      a problem. With a straight filter table the number of MAC operations
      needed drops to one quarter. Also the inner loop of the filter becomes
      more simple and easier to optimize. So the full sinc table version
      runs much faster in most cases. The trade off is some kilo-bytes
      bigger memory usage and more CPU needed when initializing the
      resampler.
      
      configure.ac: Add --enable-resample-full-sinc-table conf flag
      
      Use this flag to enable resampling with full sinc table.
      0280b024
    • Ron's avatar
      Make M_PI the same as what math.h defines it as · 2721dca6
      Ron authored
      Since the math.h one is what most systems will use anyway.
      2721dca6
  10. Jun 27, 2014
  11. Jun 25, 2014
  12. Apr 22, 2014
  13. Apr 15, 2014
  14. Jan 31, 2014
  15. Dec 07, 2013
    • Ron's avatar
      Don't overlink with libm · 162d9b49
      Ron authored
      This will also work on systems where libm is not required.
      162d9b49
    • Ron's avatar
      Prefer the stdint types if available · a181ad4f
      Ron authored
      This is similar to the change we did in libogg some time back,
      it means the generated header is less likely to vary unnecessarily
      between system architectures.
      a181ad4f
    • Ron's avatar
      Drop the --disable-vbr option from autoconf · e0619498
      Ron authored
      That's not relevant here anymore, it's a speex option.
      e0619498
    • Ron's avatar
      Make autotools a bit less whiny on modern systems · fa008ef4
      Ron authored
      and clean up some more things that belonged to speex but aren't used
      in this source tree.
      
      Drop the SPEEX*_VERSION variables completely, we only use PACKAGE_VERSION
      in the .pc file in this code.
      fa008ef4
    • Ron's avatar
      Drop the hardcoded SPEEX_VERSION from arch.h · 04cf9782
      Ron authored
      It's out of date, but isn't used anywhere in this source tree.
      The only place the one from configure.ac is used is in speexdsp.pc.in,
      and that should probably be changed to SPEEXDSP_VERSION now.
      04cf9782
    • Ron's avatar
      Drop doc/nb_celp.c · 204658af
      Ron authored
      It's no longer referenced by doc/manual.lyx in this tree.
      204658af
    • Ron's avatar
      Tidy the speex/*.h includes some more · d59f0842
      Ron authored
      This is a partial revert of 785e61a5.
      
      The _BUILD_SPEEX special case isn't needed in the public headers, and
      we don't need '../include' relative paths in the internal files.
      
      Don't include speex.h in jitter.c, it's not needed there, and no longer
      present in this source tree.
      
      Switch from speex_types.h to speexdsp_types.h in arch.h, it's not clear
      yet what the best thing to do with the latter will be (since they are
      duplicates of each other and must always stay synchronised), but the
      former is no longer present in this source tree anymore either.
      d59f0842
Loading