1. 20 Jun, 2013 - 1 commit
  2. 17 Jun, 2013 - 1 commit
    • Jeff Petkau's avatar
      Change the encryption feature to use a callback for decryption. · 368c7237
      Jeff Petkau authored
      This allows code calling the library can choose an arbitrary
      encryption algorithm.
      
      Decoder control parameter VP8_SET_DECRYPT_KEY is renamed to
      VP8D_SET_DECRYPTOR, and now takes an small config struct instead
      of just a byte array.
      
      Change-Id: I0462b3388d8d45057e4f79a6b6777fe713dc546e
      368c7237
  3. 12 Jun, 2013 - 1 commit
  4. 07 Jun, 2013 - 2 commits
  5. 05 Jun, 2013 - 1 commit
    • Scott LaVarnway's avatar
      Fixed crash in VP8/CQTest · ec34afd1
      Scott LaVarnway authored
      If the codec was configured with --enable-internal-stats,
      a seg fault would occur.  This patch fixes the problem.
      
      Change-Id: Id10a577973d185e93037c59e5b36bebdded327da
      ec34afd1
  6. 04 Jun, 2013 - 1 commit
    • Marco Paniconi's avatar
      Condition the zbin_boost increase to 1 layer. · b71542dc
      Marco Paniconi authored
      Condition the existing zbin boost logic for gf/altf mode to temporal layers==1,
      since gf/altf reference frames are used in temporal layers as reference frames.
      
      Change-Id: I618bb20730e5f193e078215d06f54997c363dd7b
      b71542dc
  7. 23 May, 2013 - 1 commit
  8. 21 May, 2013 - 3 commits
  9. 03 May, 2013 - 1 commit
  10. 24 Apr, 2013 - 1 commit
    • Johann's avatar
      Rename quantize_sse2_intrinsics.c · fe74c428
      Johann authored
      The only reason for the _intrinsics part of the file name was for the
      interim period where only one of the functions was redone and the base
      file name was the same.
      
      Change-Id: I7851154f1633d48821bee885b1cadb2148e65a23
      fe74c428
  11. 15 Apr, 2013 - 2 commits
    • Johann's avatar
      Include RTCD header in encodeframe.c · 6c3f06a4
      Johann authored
      The file uses functions defined in vp8_rtcd.h but did not include the
      header.
      
      Change-Id: I110196ddc9181e533be1fe656e21c1791cabe226
      6c3f06a4
    • Adrian Grange's avatar
      Initial addition of multiple ARF frames · c2876cf0
      Adrian Grange authored
      This is work-in-progress, it implements multiple ARF
      encoding behind an experimental flag.
      
      It adds the ability to insert multiple ARF frames into a
      single ARF group. This patch implements the reordering
      of the coded frames, and implements a fixed-length coding
      pattern. It applies a fixed quantizer strategy based on
      where the frame is in the coding sequence.
      
      Further work to modify the rate control strategy is
      ongoing and will be submitted via a set of future patches.
      
      In this first step, each ARF group is recursively
      bisected and an ARF frame added at that position in the
      sequence. The recursion continues until ARF frames are
      within MIN_GF_INTERVAL frames.
      
      The code sits behind the "multiple-arf" experimental
      flag ("CONFIG_MULTIPLE_ARF"). The experimental flag
      "oneshotq" ("CONFIG_ONESHOTQ") also needs to be enabled
      for this patch to work correctly.
      
      Change-Id: Ie473b05ebb43ac473c0cfb659b2b8042823085e2
      c2876cf0
  12. 12 Apr, 2013 - 1 commit
    • Marco Paniconi's avatar
      Fix for multi-res-encoding: · 282c9639
      Marco Paniconi authored
      Use local variable for setting the improved prediction mode.
      cpi->sf.improved_mv_pred is set/fixed at the frame level
      and should not be changed inside pick_inter_mode.
      
      Change-Id: Ie28d9171ac000e631af0e30204970e3d4fff3078
      282c9639
  13. 03 Apr, 2013 - 1 commit
  14. 27 Mar, 2013 - 1 commit
  15. 22 Mar, 2013 - 1 commit
  16. 20 Mar, 2013 - 1 commit
  17. 18 Mar, 2013 - 1 commit
  18. 16 Mar, 2013 - 1 commit
  19. 15 Mar, 2013 - 2 commits
  20. 14 Mar, 2013 - 5 commits
  21. 06 Mar, 2013 - 1 commit
    • James Zern's avatar
      vp8: clamp probability values · 215084b3
      James Zern authored
      fixes out of bounds reads on vp8_prob_cost table.
      present since:
      217591fd Added rate-targeted temporal scalability
      v0.9.7-p1-71-g217591fd
      
      Change-Id: I9194b773098a381f1e3f67bd3307f05df27c24fd
      215084b3
  22. 05 Mar, 2013 - 1 commit
    • Dmitry Kovalev's avatar
      Code cleanup. · 33efdfec
      Dmitry Kovalev authored
      Writing all #define guards using the same style. Inlining macro
      VP8DX_BOOL_DECODER_FILL into vp8dx_bool_decoder_fill. Removing unnecessary
      includes.
      
      Change-Id: I483fa979ab34008bf7835b5f34c6471c44daf956
      33efdfec
  23. 04 Mar, 2013 - 1 commit
  24. 02 Mar, 2013 - 2 commits
  25. 01 Mar, 2013 - 1 commit
    • Johann's avatar
      Use intrinsics for sse2 regular quantize · eca59cad
      Johann authored
      Remove dependency of this function on asm_offsets. ssse3/sse4 next.
      
      Change quant_shift calculation so it be done using SIMD. Pre-calculate
      as much as possible to simplify EOB selection.
      
      Take advantage of qcoeff being zero'd by tying the if statements
      together.
      
      Speed parity with previous implementation with gcc x86_64 linux
      
      Change-Id: Ife97556a1eca3a74b09def1a3d04084974dff1fb
      eca59cad
  26. 28 Feb, 2013 - 1 commit
  27. 27 Feb, 2013 - 1 commit
  28. 26 Feb, 2013 - 1 commit
    • Johann's avatar
      vp8 fast quantizer with intrinsics · ef887974
      Johann authored
      Reduce dependency on offsets file by using intrinsics. Disassembly shows
      improvements over previous assembly specifically in register management,
      preloading, and {pro,epi}log. Speed change is within margin of error.
      
      Change-Id: I8131b4b4d62bc092407fe847bfaa8f2c0e1384ff
      ef887974
  29. 22 Feb, 2013 - 2 commits