Skip to content
Snippets Groups Projects
  1. Nov 30, 2012
    • Jean-Marc Valin's avatar
      Fixes an out-of-bounds read issue with the padding handling code · 9345aaa5
      Jean-Marc Valin authored
      This was reported by Juri Aedla and is limited to reading memory up
      to about 60 kB beyond the compressed buffer. This can only be triggered
      by a compressed packet more than about 16 MB long, so it's not a problem
      for RTP. In theory, it *could* crash an Ogg decoder if the memory just after
      the incoming packet is out-of-range.
      9345aaa5
  2. Nov 29, 2012
    • Ralph Giles's avatar
      Improve the !OPUS_BUILD #error. · 799b1700
      Ralph Giles authored
      The README doesn't say anything about this particular define.
      Refer people to config.h and the other build files for examples.
      799b1700
  3. Nov 09, 2012
    • Ralph Giles's avatar
      Fix line endings on MSVC project files. · c55f4d8d
      Ralph Giles authored
      These files has unix line endings, while the other
      project files have dos line endings.
      
      I hoped this would fix the link error about corrupt
      or invalid files with these projects, but it doesn't.
      Running 'Update project files...' in the VS2012 IDE
      is a work around, but it just adds a <PlatformToolset>
      element to each <PropertyGroup> and a line ending at
      the end of the file.
      c55f4d8d
    • Ralph Giles's avatar
      Add the new source files to the MSVC projects. · c8231202
      Ralph Giles authored
      Commits ae0e2ca8 and 6906210c split encode and decode
      support into separate files to help reduce the footprint
      of decode-only builds.
      
      This commit adds the new source files to the MSVC
      project files, fixing that build.
      c8231202
  4. Nov 08, 2012
  5. Nov 05, 2012
  6. Oct 30, 2012
  7. Oct 27, 2012
    • Gregory Maxwell's avatar
      Fix several issues with multistream argument validation. · de95da9b
      Gregory Maxwell authored
      As reported by Mark Warner opus_multistream_*_create were depending on
       the behavior of malloc(0) in order to correctly report some kinds of
       argument errors. Bad arguments could be incorrectly reported as
       allocation failures. This changes multistream to explicitly check the
       arguments like the single stream _create functions. The unit tests were
       enough to catch this on systems where malloc(0) returns NULL but didn't
       catch it on other systems because the later _init call would catch the
       bad arguments and trigger the correct error if and only if the malloc
       didn't return a null pointer.
      
      In multistream_encoder_init failures of the internal non-multistream
       init calls were not being caught and propagated. Decode didn't have
       this problem. This propagates the errors and adds additional tests
       (the multistream encoder api is sill under tested) that would have
       detected this error.
      
      Plus add some stronger tests for things like error==NULL for the _create
       functions that take a pointer for error output.
      de95da9b
  8. Oct 23, 2012
    • Emily Bowman's avatar
      Fix MSVC linker warnings · f77e86a2
      Emily Bowman authored
      
      Specify the correct debug runtime libraries for the test
      and demo executables to prevent mismatch warnings with
      the default runtime.
      
      Signed-off-by: default avatarRalph Giles <giles@mozilla.com>
      f77e86a2
    • Emily Bowman's avatar
      Fix the MSVC build. · 3b60e81d
      Emily Bowman authored
      Updates the project files to include the new encoder source files.
      Use OPUS_RESTRICT and include config.h to set the proper defines
      for build under MSVC.
      3b60e81d
    • Ralph Giles's avatar
      Fix MSVC format conversion warnings. · 027ec51b
      Ralph Giles authored
      The Microsoft compiler warns about precision reduction from
      default double literals to the floats we generally use outside
      the fixed-point build. Avoid these by qualifying the literals
      as floats.
      
      Thanks to derf for review.
      027ec51b
  9. Oct 16, 2012
  10. Oct 10, 2012
  11. Oct 09, 2012
  12. Sep 21, 2012
    • Jean-Marc Valin's avatar
      Reduces rate/max rate to make room for redundancy · 6b45974f
      Jean-Marc Valin authored
      This fixes a problem where we could end up starving the redundancy
      frame, especially for CBR. The solution is to make sure that some
      bits are left available -- assuming we use the same rate for redundancy
      as for the rest of the frame.
      6b45974f
  13. Sep 19, 2012
  14. Sep 14, 2012
  15. Sep 12, 2012
  16. Sep 08, 2012
    • Timothy B. Terriberry's avatar
      Remove large multistream stack buffers. · a40689e6
      Timothy B. Terriberry authored and Jean-Marc Valin's avatar Jean-Marc Valin committed
      This avoids allocating any buffers on the stack that depend on the
       total channel count.
      Such buffers could easily exceed the size of the
       NONTHREADSAFE_PSEUDOSTACK.
      It also checks the frame_size argument in both the encoder and
       decoder to avoid allocating large stack buffers for opus_encode()
       calls that would fail anyway or opus_decode() calls that would
       never use all that space anyway.
      a40689e6
  17. Sep 06, 2012
  18. Aug 29, 2012
  19. Aug 21, 2012
  20. Aug 17, 2012
    • Ralph Giles's avatar
      Fix an MSVC warning. · 3a9b3545
      Ralph Giles authored
      Microsoft Visual Studio 2010 warns about 'C4146: unary minus
      operator applied to unsigned type, result still unsigned'
      because of the '&-sizeof(void*)' in align().
      
      This commit works around the warning by casting the size_t
      to int before negation.
      
      Patch by Hauke, who reported the issue on the opus mailing
      list. Reviewed by derf.
      3a9b3545
  21. Aug 06, 2012
  22. Jul 27, 2012
  23. Jul 20, 2012
  24. Jul 18, 2012
  25. Jul 17, 2012
  26. Jul 16, 2012
    • gcp's avatar
      Output/intermediate dir cleanup and fixes in 64-bit mode. · 642084c4
      gcp authored and Gregory Maxwell's avatar Gregory Maxwell committed
      Also make the 64-bit builds use the default output directories.
      Fix the type of the default Opus output to be a library.
      642084c4
    • gcp's avatar
      Make MSVC build work in parallel. · eeb7bd3d
      gcp authored and Gregory Maxwell's avatar Gregory Maxwell committed
      The (non-default) temporary & output dirs configured in the projects could
      cause issues when doing compilation on a multiprocessor machine. Cleaned
      this up a little to use the defaults, which makes that work again and
      doesn't make the output structure any worse. Also removed debug output for
      release binaries & a tiny whitespace fix.
      eeb7bd3d
  27. Jul 14, 2012
Loading