1. 08 Oct, 2014 - 1 commit
  2. 01 Oct, 2014 - 1 commit
  3. 29 Sep, 2014 - 1 commit
  4. 15 Sep, 2014 - 1 commit
    • Frank Galligan's avatar
      Remove memset of every external frame buffer. · 175d9dfe
      Frank Galligan authored
      Libvpx was memseting every external frame buffer before decode. This
      was to work around a valgrind issue in our C loop filter. Most of
      the time this was not needed and we have noticed some significant
      performance loss on some platforms. Now we require the application to
      zero out the buffers if it is using external frame buffers.
      
      Change-Id: I7330d00a315e65137ed30edd5f813e8929b76242
      175d9dfe
  5. 03 Sep, 2014 - 1 commit
  6. 02 Sep, 2014 - 1 commit
    • Deb Mukherjee's avatar
      Adds config opt for highbitdepth + misc. vpx · 5acfafb1
      Deb Mukherjee authored
      Adds config parameter vp9_highbitdepth, to support highbitdepth profiles.
      Also includes most vpx level high bit-depth functions. However
      encode/decode in the highbitdepth profiles will not work until
      the rest of the code is in place.
      
      Change-Id: I34c53b253c38873611057a6cbc89a1361b8985a6
      5acfafb1
  7. 23 Aug, 2014 - 1 commit
  8. 22 Aug, 2014 - 1 commit
  9. 19 Aug, 2014 - 1 commit
  10. 16 Aug, 2014 - 1 commit
  11. 13 Aug, 2014 - 1 commit
  12. 12 Aug, 2014 - 1 commit
  13. 04 Aug, 2014 - 1 commit
  14. 16 Jul, 2014 - 1 commit
    • Deb Mukherjee's avatar
      Adds support for raw yuv files for 422/444 · 090f4d4b
      Deb Mukherjee authored
      Adds support for raw yuv inputs in 422/444 sampling for use
      in profiles 1 and 3.
      New options added to vpxenc are:
      --i422 and --i444, which are to be used in conjunction with
      --width, --height, and --fps for proper raw yuv handling.
      A new option is added to vpxdec:
      --rawvideo, which enforces raw yuv video output for the
      bit-stream decoded irrespective of 420, 422 or 444 sampling.
      The existing options --i420 and --yv12
      are specialized for use only for 420 content.
      
      Change-Id: I2e3028380709afa673bf2e2c25ad5e271a626055
      090f4d4b
  15. 15 Jul, 2014 - 1 commit
  16. 14 Jul, 2014 - 1 commit
    • Deb Mukherjee's avatar
      Misc. bit-depth related changes · 449e5f2a
      Deb Mukherjee authored
      Sets the bit-depth field as default 8 in the image structure in vp8.
      Generalizes yuv read in preparation for support for reading 422/444
      for 8-bit and 10/12-bit.
      
      Change-Id: I560c13c348b122fd028e408431156376b895058c
      449e5f2a
  17. 05 Jul, 2014 - 1 commit
    • Deb Mukherjee's avatar
      Adds support for reading and writing 10/12-bit y4m · 5820c5d6
      Deb Mukherjee authored
      The y4m extension used is the same as the one used in ffmpeg/x264.
      The patch is adapted from the highbitdepth branch.
      
      Also adds unit tests for y4m header parsing and md5 check
      of the raw frame data, as well as y4m writing.
      
      [build fix for Mac/VS by not using tuples with strings]
      
      Change-Id: I40897ee37d289e4b6cea6fedc67047d692b8cb46
      5820c5d6
  18. 03 Jul, 2014 - 1 commit
  19. 02 Jul, 2014 - 2 commits
    • Deb Mukherjee's avatar
      Adds support for reading and writing 10/12-bit y4m · 82dc1332
      Deb Mukherjee authored
      The y4m extension used is the same as the one used in ffmpeg/x264.
      The patch is adapted from the highbitdepth branch.
      
      Also adds unit tests for y4m header parsing and md5 check
      of the raw frame data, as well as y4m writing.
      
      Change-Id: Ie2794daf6dbafd2f128464f9b9da520fc54c0dd6
      82dc1332
    • James Zern's avatar
      vpxdec: add --keep-going option · 95853db8
      James Zern authored
      for debugging purposes.
      continues decoding after receiving a decode error. will still exit with
      an error after the current loop, ignoring remaining --loops
      
      Change-Id: I011a71b866ff493a3f3bbb59e9bff998d19daee3
      95853db8
  20. 21 May, 2014 - 1 commit
  21. 13 May, 2014 - 1 commit
  22. 22 Apr, 2014 - 1 commit
  23. 14 Mar, 2014 - 1 commit
    • Vignesh Venkatasubramanian's avatar
      Adding a configure flag to control WebM container support · 0ffa3836
      Vignesh Venkatasubramanian authored
      Adding a --(enable|disable)-webm-io flag to control WebM container input and
      output support. For now, enabling WebM IO by default only when there is a C++
      compiler. Doing so because eventually we will move WebM IO to libwebm and it
      is built using C++.
      
      Change-Id: I210ac36c23528e382ed41d3c4322291720481492
      0ffa3836
  24. 27 Feb, 2014 - 1 commit
  25. 25 Feb, 2014 - 1 commit
  26. 15 Feb, 2014 - 1 commit
  27. 14 Feb, 2014 - 1 commit
  28. 13 Feb, 2014 - 2 commits
  29. 12 Feb, 2014 - 1 commit
  30. 05 Feb, 2014 - 1 commit
    • James Zern's avatar
      vpxdec: normalize frame size types · 75d7ee33
      James Zern authored
      int -> size_t for threshold values. this silences a few signed/unsigned
      comparison warnings
      
      Change-Id: Ic7b7af61f75f60a1b6d04167640cea2d09bbd967
      75d7ee33
  31. 01 Feb, 2014 - 1 commit
  32. 28 Jan, 2014 - 1 commit
  33. 24 Jan, 2014 - 2 commits
    • Frank Galligan's avatar
      Revert external frame buffer code. · b1c72b63
      Frank Galligan authored
      A future CL will add external frame buffers
      differently.
      
      Squash commit of four revert commits:
      Revert "Increase required number of external frame buffers"
      
      This reverts commit 9e41d569.
      
      Revert "Add external constants."
      
      This reverts commit bbf53047.
      
      Revert "Add frame buffer lru cache."
      
      This reverts commit fbada948.
      
      Conflicts:
      	vpxdec.c
      
      Change-Id: I76fe42419923a6ea6c75d9997cbbf941d73d3005
      
      Revert "Add support to pass in external frame buffers."
      
      This reverts commit 10f89169.
      
      Conflicts:
      	test/external_frame_buffer_test.cc
      	vp9/common/vp9_alloccommon.c
      	vp9/common/vp9_reconinter.c
      	vp9/decoder/vp9_decodeframe.c
      	vp9/encoder/vp9_onyx_if.c
      	vp9/vp9_dx_iface.c
      	vpx/vpx_decoder.h
      	vpx/vpx_external_frame_buffer.h
      	vpx_scale/generic/yv12config.c
      	vpxdec.c
      
      Change-Id: I7434cf590f1c852b38569980e4247fad0d939c2e
      b1c72b63
    • Dmitry Kovalev's avatar
      vpxdec: grouping together code with the same if conditions · f2acb455
      Dmitry Kovalev authored
      Change-Id: I5e546fce725b8c4722da5494e9423154e870fd58
      f2acb455
  34. 22 Jan, 2014 - 3 commits
  35. 18 Jan, 2014 - 1 commit