Skip to content
Snippets Groups Projects
  1. Mar 04, 2011
  2. Mar 03, 2011
    • Mikhal Shemer's avatar
      Fixing divide by zero · 1de99a2a
      Mikhal Shemer authored
      Change-Id: I9d8a98a2f7ed1e3116d0bae35164618c41998bac
      1de99a2a
    • John Koleszar's avatar
      Fix drastic undershoot in long form content · 36be4f7f
      John Koleszar authored
      When the modified_error_left accumulator exceeds INT_MAX, an incorrect
      cast to int resulted in a negative value, causing the rate control to
      allocate no bits to that keyframe group, leading to severe undershoot
      and subsequent poor quality.
      
      This error was exposed by the recent change to the rolling target and
      actual spend accumulators in commit 305be4e4 which fixed them to
      actually calculate the average value rather than be re-initialized
      on every frame to the average per-frame bitrate. When this bug was
      triggered, the target bitrate could be 0, so the rolling target
      becomes small, which causes the undershoot. The code prior to 305be4e4
      did not exhibit this behavior because the rolling target was always
      set to a reasonable value and was independent of the actual target
      bitrate. With this patch, the actual target bitrate is calculated
      correctly, and the rate control tracks as expected.
      
      This cast was likely added to silence a compiler warning on a comparison
      between a double (modified_error_left) and an int (0). Instead, this
      patch removes the cast and changes the comparison to be against 0.0,
      which should prevent the warning from reoccuring.
      
      This fixes issue #289. Special thanks to gnafu for his efforts in
      reporting and debugging this fix.
      
      Change-Id: Ie5cc1a7b516c578a76c3a50c892a6f04a11621fe
      36be4f7f
  3. Mar 02, 2011
  4. Mar 01, 2011
    • John Koleszar's avatar
      change CFLAGS for 64 bit icc builds · 06ce0d88
      John Koleszar authored
      AMD64 only implies SSE2, not SSE3. There aren't any known cases where
      icc was generating SSE3 instructions since all the vectorizable code
      is already in handwritten asm, so this fix is included mostly for
      correctness. Fixes issue #259.
      
      Change-Id: I993335a4740b68b559035305fb52ca725a6beaff
      06ce0d88
    • John Koleszar's avatar
      examples: use function to get iface pointers · 987ac894
      John Koleszar authored
      MSVC can't pass the address of global variables in a DLL correctly
      across DLL boundaries. This patch allows linking the examples to
      a libvpx dll build. Fixes issue #268.
      
      Change-Id: I1c52d076cfc68efb3efdfba019f12d53c5019f58
      987ac894
  5. Feb 28, 2011
  6. Feb 25, 2011
  7. Feb 24, 2011
  8. Feb 23, 2011
  9. Feb 22, 2011
  10. Feb 18, 2011
Loading