Skip to content
Snippets Groups Projects
  1. Apr 23, 2014
  2. Apr 04, 2014
  3. Apr 02, 2014
    • Paul Wilkins's avatar
      Revert "Changing webmenc to use libwebm" · 80577dff
      Paul Wilkins authored
      Temporary revert.
      Problems with conflicting definitions of type off_t
      in MSVC builds that need resolving.
      
      c:\Program Files (x86)\
        Microsoft Visual Studio 9.0\VC\include\wchar.h(479) :
        "error C2371: 'off_t' : redefinition; different basic types
      c:\on2experimental\libvpx\tools_common.h(26) :
         see declaration of 'off_t'"
      
      This reverts commit 92a4c591.
      
      Change-Id: I535e40a18842a92e3e6e0b29e5fba66313010803
      80577dff
  4. Mar 28, 2014
  5. Mar 19, 2014
    • James Zern's avatar
      Revert "configure: Check for make" · 4b41800d
      James Zern authored
      This reverts commit 89025585.
      
      This check breaks BSD builds and isn't useful through the configure
      process. The README describes the build environment requirements (GNU
      make).
      
      Change-Id: I25f8a9c1640909412ab405dbd09a1c4d93e5a511
      4b41800d
  6. Mar 17, 2014
  7. Mar 14, 2014
    • 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
  8. Mar 08, 2014
    • James Zern's avatar
      gen_msvs_vcxproj.sh: add --enable-werror option · 37c60d82
      James Zern authored
      translates to TreatWarningAsError (/WX)
      setting this via the CL environment variable is not possible due to the
      /WX- default which is used on the command line
      
      Change-Id: I0b42a9d3ca9eba6af82c25b8e434baa2fcb00156
      37c60d82
  9. Mar 06, 2014
  10. Mar 05, 2014
    • Tom Finegan's avatar
      configure: Check for make · 89025585
      Tom Finegan authored
      Stop configuration and report an error when make is not available.
      
      Change-Id: I599a4c43386e3657748d5b875afb235701e6b57f
      89025585
  11. Mar 03, 2014
    • James Zern's avatar
      configure: check for perl · 14be7ba6
      James Zern authored
      Though not (currently) required this tests for perl in all
      configurations.
      
      Fixes issue #671
      
      Change-Id: Ibe1e72db74bb4cf3252b73c68ff1dfc2ecfc902b
      14be7ba6
  12. Dec 28, 2013
    • Dmitry Kovalev's avatar
      Removing CONFIG_MD5. · d24f4e49
      Dmitry Kovalev authored
      We don't need compile time md5 configuration because --md5 is a runtime
      option.
      
      Change-Id: Ic0a2427ae5de5a18f31e5ee60c3732481b377ca1
      d24f4e49
  13. Nov 21, 2013
  14. Nov 19, 2013
  15. Nov 15, 2013
  16. Nov 14, 2013
  17. Oct 31, 2013
  18. Oct 29, 2013
  19. Oct 28, 2013
  20. Sep 09, 2013
    • Yaowu Xu's avatar
      changed to enable vp9_postproc · 132ef429
      Yaowu Xu authored
      In configure when internal-stats is enabled, because postprocessing
      code is needed for computing stats for enabling internal-stats
      
      Change-Id: I3601dc5a4aa65feb99465452486a21e75eb62c1f
      132ef429
  21. Sep 04, 2013
    • Jim Bankoski's avatar
      make vp9 postproc a config option · 79401542
      Jim Bankoski authored
      Vp9 postproc is disabled for now as its not been shown to help and
      may be merged with vp8.
      
      Change-Id: I25620d6cd34c6e10331b18c7b5ef7482e39c6057
      79401542
  22. Aug 22, 2013
  23. Aug 14, 2013
  24. Aug 06, 2013
    • Jim Bankoski's avatar
      sad + miscellaneous updates · c9126e0b
      Jim Bankoski authored
      Enable use_x86inc as a commandline option.  Fix Bug with sse2 when
      x86inc is disabled. Adds Sad asm protection to x86inc protection
      
      Change-Id: Iee0f9dd235ea10e8ace512eb362ba9bebe8c9df6
      c9126e0b
    • Jim Bankoski's avatar
      reworked config for use_x86_inc · a93b115c
      Jim Bankoski authored
      Support enabling it or disabling it.  Moved read out to configure.sh
      so that its done once instead of in make and in config.
      
      Change-Id: I73a9190cf31de9f03e8a577f478fa522f8c01c8b
      a93b115c
  25. Aug 05, 2013
    • Jim Bankoski's avatar
      Begin to restrict x86inc.asm usage · c3809f3d
      Jim Bankoski authored
      Chromium does not support 32bit builds for Mac which use x86inc.asm.
      Make the files which include it work if 64bit or not PIC enabled
      starting with vp9_copy_sse2.asm
      
      Consolidate these targets in vp9_rtcd_defs.sh
      
      Change-Id: If18f0b957a611efd085a3ee7d245cf1eb91e8248
      c3809f3d
  26. Jul 24, 2013
  27. Jul 19, 2013
  28. Jun 27, 2013
    • James Zern's avatar
      test_libvpx: disable pthreads in gtest for win targets · e4d2c255
      James Zern authored
      currently threading is internal to libvpx so thread safety is unneeded
      in libgtest -- visual studio builds already operate in this way as they
      do not have pthread.h available by default.
      
      this removes an unconditional link to libpthread using $(extralibs)
      should libvpx require it.
      
      Change-Id: I2f278b711f533d0f4d8a6c896833e3e2237d1f45
      e4d2c255
  29. Jun 20, 2013
  30. Jun 19, 2013
    • James Zern's avatar
      test_libvpx: disable pthreads in gtest · 90a9900a
      James Zern authored
      currently threading is internal to libvpx so thread safety is unneeded
      in libgtest -- visual studio builds already operate in this way as they
      do not have pthread.h available by default.
      
      this removes an unconditional link to libpthread using $(extralibs)
      should libvpx require it.
      
      Change-Id: Ieae1d693406653a54b54fba818c598836797d33b
      90a9900a
  31. Jun 10, 2013
  32. Jun 06, 2013
    • John Koleszar's avatar
      Reimplementation of loop filter · 043d348a
      John Koleszar authored
      This version of the loop filter supports non-4:2:0 subsampling and
      a fourth plane, as well as changing the filtering order to be more
      friendly to hardware implementations.
      
      The filters are applied first to all vertical edges within the
      64x64 SB, followed by the top horizontal edge and any internal
      horizontal edges. Since filtering is applied on each 4x4 edge
      serially, a dependency is created from filtering one block edge
      to the next. It would be possible to remove this depencnecy by
      building all filtering decisions from the unfiltered
      reconstruction data.
      
      Change-Id: I08f3e9683eb7bded8a76651cbc50fc0dfdd05fa7
      043d348a
  33. May 30, 2013
    • Paul Wilkins's avatar
      Patch to remove implicit segmentation. · 1b103f25
      Paul Wilkins authored
      This patch removes the implicit segmentation
      experiment from the code base as the benefits
      were still unproven as of the bitstream deadline.
      
      Change-Id: I273b99d8d621d1853eac4182f97982cb5957247e
      1b103f25
  34. May 29, 2013
    • Deb Mukherjee's avatar
      Balancing coef-tree to reduce bool decodes · b8b3f1a4
      Deb Mukherjee authored
      This patch changes the coefficient tree to move the EOB to below
      the ZERO node in order to save number of bool decodes.
      
      The advantages of moving EOB one step down as opposed to two steps down
      in the other parallel patch are: 1. The coef modeling based on
      the One-node becomes independent of the tree structure above it, and
      2. Fewer conext/counter increases are needed.
      
      The drawback is that the potential savings in bool decodes will be
      less, but assuming that 0s are much more predominant than 1's the
      potential savings is still likely to be substantial.
      
      Results on derf300: -0.237%
      
      Change-Id: Ie784be13dc98291306b338e8228703a4c2ea2242
      b8b3f1a4
  35. May 25, 2013
  36. May 23, 2013
    • Paul Wilkins's avatar
      Merge Scatter Scan experiment. · 33ecd6ad
      Paul Wilkins authored
      Removal from under configure flag.
      A bit  renaming
      
      Change-Id: I2213229dfe852001dfec16b149f47c52ce88f3aa
      33ecd6ad
    • Jingning Han's avatar
      Merge 4x4 block level partition into codebase · 7ac5ac52
      Jingning Han authored
      Move 4x4/4x8/8x4 partition coding out of experimental list.
      
      This commit fixed the unit test failure issues. It also resolved
      the merge conflicts between 4x4 block level partition and iterative
      motion search for comp_inter_inter.
      
      Change-Id: I898671f0631f5ddc4f5cc68d4c62ead7de9c5a58
      7ac5ac52
Loading