Skip to content
Snippets Groups Projects
  1. Feb 25, 2020
  2. Feb 14, 2020
  3. Oct 23, 2017
  4. Jul 20, 2017
  5. Jul 19, 2017
  6. Jun 05, 2017
  7. Nov 28, 2016
    • Ralph Giles's avatar
      Initialize global pointers in examples. · 91203fdf
      Ralph Giles authored
      Global pointers are initialized to zero in C, but not in C++.
      
      Add an explicit initializer to reduce confusion and avoid
      bugs when the example code is copied into C++ applications.
      
      Based on a patch by Alex Houghton <houghton1411@aol.com>.
      91203fdf
  8. Sep 23, 2016
    • Timothy B. Terriberry's avatar
      Fix linking with musl libc with asm enabled. · 4bd78cd7
      Timothy B. Terriberry authored
      We made sure to emit emms before potentially calling/returning to
       applicate code, but not before calling libc code.
      It turns out musl libc's malloc/free implementation use floating
       point, so they don't work correctly unless we do.
      Add some extra calls to make sure the FPU is in the proper state
       any place we might potentially call malloc or free.
      
      Thanks to Rune (ztsdztsd on Trac) for the report.
      
      Fixes #2287
      4bd78cd7
    • Timothy B. Terriberry's avatar
      Fix some broken clamping in rate control. · eac29ae2
      Timothy B. Terriberry authored
      If we have some dupe frames right near the end of the buffer, our
       metric window can be slightly larger than the buffer.
      However, the clamping we use to determine how many frames' worth of
       metrics to add to the buffer had a mix of signed and unsigned
       types, so if that number when negative, instead of clamping
       against zero, it would ask for all remaining frames in the file.
      That would cause an infinite loop when we tried to find the last
       keyframe in the circular buffer in oc_enc_select_qi() (which was
       not big enough to actually hold that many frames).
      
      This patch changes the clamp to a form that works with all unsigned
       values.
      
      Thanks to Brion Vibber for the report.
      
      Fixes #2229
      
      Forward-port of r19507 from svn.
      eac29ae2
  9. Jul 27, 2016
    • Timothy B. Terriberry's avatar
      Sanity improvements to oc_dec_headerin() error returns. · 50fd339b
      Timothy B. Terriberry authored
      In the case where we got a data packet before receiving all three
       headers, the old code would check to see if the second through
       seventh bytes matched the magic string "theora" (extremely
       unlikely, but possible), and if so, return TH_EBADHEADER, otherwise
       return TH_ENOTFORMAT.
      That this was not consistent was a bit non-sensical.
      
      5a5f5bb2 changed to returning TH_EBADHEADER if we got a data
       packet after receiving the first header, but left the old behavior
       for the first packet.
      Change instead to explicitly return TH_ENOTFORMAT if the first
       header was missing (since we only check one bit of the packet to
       determine whether or not it's a data packet, odds are it's a packet
       for some other kind of data, like a Vorbis header).
      We continue to return TH_EBADHEADER if we see a data packet after
       encountering a valid header, but before reading all three.
      
      Also re-arrange the NULL checks to follow continue to allow the
       undocumented ability to pass in NULL for parameters which are not
       needed by the next header in the sequence.
      E.g., it's perfectly all right to pass NULL for _setup when
       expecting to read the comment header next.
      In this case we'll now return TH_EBADHEADER instead of TH_EFAULT if
       the packet was actually a data packet.
      50fd339b
    • Timothy B. Terriberry's avatar
      NULL check _tc and _setup even for data packets. · 5a5f5bb2
      Timothy B. Terriberry authored
      Our documentation says we will, so we should.
      
      Thanks to Chris Peterson for the report.
      
      Fixes #2279.
      5a5f5bb2
  10. May 25, 2016
  11. Aug 27, 2015
    • Ralph Giles's avatar
      Use the float latex package in the spec. · fbb27580
      Ralph Giles authored
      Newer texlive distributions require \usepackage{float} for
      the [H] figure layout directive. We use this to make sure
      the header layout figures are at the top of their respective
      sections for conventional reference like in an RFC, so requiring
      the additional package is safer than falling back to standard
      latex [h] or [!h].
      
      Note that [H] from the float package is incompatible with
      fallback specifiers.
      
      The configure script will automatically check for the new package.
      fbb27580
  12. Oct 31, 2014
    • Timothy B. Terriberry's avatar
      Fix mismatched oc_mb_fill_cmapping11 signature. · 12f20c7a
      Timothy B. Terriberry authored
      oc_mb_fill_cmapping11() was defined without the last two parameters
       of its fellow mapping functions, meaning it got called with extra
       undeclared parameters.
      
      This could confuse the emscripten JavaScript cross-compiler's asm.js
       optimizations, as it's very picky about function signatures.
      
      Fixes #2068.
      Patch by Brion Vibber <brion@pobox.com>.
      
      svn path=/trunk/theora/; revision=19261
      12f20c7a
  13. Jul 23, 2014
  14. Jun 10, 2014
  15. Apr 04, 2014
  16. Feb 17, 2014
  17. Feb 11, 2014
  18. Nov 18, 2013
  19. Feb 23, 2013
  20. Jan 08, 2013
  21. Jun 02, 2012
  22. May 08, 2012
    • Timothy B. Terriberry's avatar
      Fix pp_sharp_mod calculation. · 0ae66d56
      Timothy B. Terriberry authored
      This was broken when the dequant_tables indexing changed in commit
       r16102, but it only affected post-processing quality, so we never
       noticed.
      With gcc 4.8.0, this can now trigger a segfault during decoder
       initialization.
      
      svn path=/trunk/theora/; revision=18268
      0ae66d56
  23. Mar 31, 2012
  24. Mar 06, 2012
Loading