Skip to content
Snippets Groups Projects
  1. Mar 05, 2014
    • James Zern's avatar
      msvs: filter out include-only asm files · b92f7bc9
      James Zern authored
      avoid building x86inc.asm, x86_abi_support.asm and vpx_config.asm as
      they provide no symbols themselves
      
      fixes:
       warning LNK4221: This object file does not define any previously
      undefined public symbols, so it will not be used by any link operation
      that consumes this library
      
      Change-Id: Iecfe03aa76efbfc07c2af5b91ba5405634e45f1d
      b92f7bc9
  2. Mar 03, 2014
    • James Zern's avatar
      build: convert rtcd.sh to perl · 805078a1
      James Zern authored
      significantly speeds up file generation.
      
      the goal of this change is to convert rtcd.sh to perl as directly as
      possible to allow for simple comparison. future changes can make it more
      perl-like.
      
      ---
      Linux
          [CREATE] vpx_scale_rtcd.h
      real    0m0.485s ->    0m0.022s
          [CREATE] vp8_rtcd.h
      real    0m4.619s ->    0m0.060s
          [CREATE] vp9_rtcd.h
      real    0m10.102s ->    0m0.087s
      
      Windows
          [CREATE] vpx_scale_rtcd.h
      real    0m8.360s ->    0m0.080s
          [CREATE] vp8_rtcd.h
      real    1m8.083s ->    0m0.160s
          [CREATE] vp9_rtcd.h
      real    2m6.489s ->    0m0.233s
      
      Change-Id: Idfb71188206c91237d6a3c3a81dfe00d103f11ee
      805078a1
  3. Feb 28, 2014
  4. Feb 10, 2014
    • Frank Galligan's avatar
      Add get release decoder frame buffer functions. · e8e15279
      Frank Galligan authored
      This CL changes libvpx to call a function when a frame buffer
      is needed for decode. Libvpx will call a release callback when
      no other frames reference the frame buffer. This CL adds a
      default implementation of the frame buffer callbacks. Currently
      only VP9 is supported. A future CL will add support for
      applications to supply their own frame buffer callbacks.
      
      Change-Id: I1405a320118f1cdd95f80c670d52b085a62cb10d
      e8e15279
  5. Feb 05, 2014
    • James Zern's avatar
      *.mk: s/\bUSE_X86INC/CONFIG_USE_X86INC/ · 7cf0c783
      James Zern authored
      CONFIG_USE_X86INC is available to every makefile, there's no need to
      duplicate its value with USE_X86INC
      
      Change-Id: Id12bd5f09cba78abba56ab5a8f56351562e5b8b6
      7cf0c783
  6. Jan 30, 2014
  7. Jan 24, 2014
    • 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
  8. Jan 08, 2014
    • Johann Koenig's avatar
      Install test sources for MSVS · 0239f114
      Johann Koenig authored
      Move the code outside the conditions. The test sources themselves are
      also required for Visual Studio.
      
      Change-Id: Id5e93ebc7369e1807eba0b9dc4f7d0f18033d794
      0239f114
  9. Dec 16, 2013
  10. Nov 06, 2013
    • Ivan Maltz's avatar
      Move SVC per-frame loop from sample app into libvpx proper · 1ed0e1be
      Ivan Maltz authored
      SVC multiple layer per frame encoding is invoked with vpx_svc_init and
      vpx_svc_encode. These interfaces are designed to be invoked from ffmpeg.
      Additional improvements:
      - make dummy frame handling a bit more explicit
      - fixed bug with single layer encodes
      - track individual frame sizes and psnrs instead of averages
      - parameterized quantizer, 16th scalefactors, more logging,
      - enabled single layer encodes to generate baseline
      - include new mode for 3 layer I frame with 5 total layers
      
      Change-Id: I46cfa600d102e208c6af8acd6132e0cc25cda8d4
      1ed0e1be
  11. Oct 22, 2013
    • James Zern's avatar
      Revert "Merge "SVC improvements"" · cd74a901
      James Zern authored
      This reverts commit a82001b1, reversing
      changes made to f6d870f7.
      
      This commit breaks windows builds and needs some work to fix those and
      some additional comments.
      
      Change-Id: Ic0b0228e36704b127e5e399ce59db26182cfffe7
      cd74a901
  12. Oct 21, 2013
    • Ivan Maltz's avatar
      SVC improvements · 663916ce
      Ivan Maltz authored
      These changes were originally made in the Stratacaster team-review repository
      
      commit e114bffcd82ad74c3696ec58e13c0ac895d6c82d
      Author: Charles 'Buck' Krasic <ckrasic@google.com>
      Date:   Mon Oct 14 16:52:13 2013 -0700
      
          Make dummy frame handling a bit more explicit, fixing bug
          with single layer encodes.
      
      Squashed commit of the following:
      
      commit 1ebbfd976c0fadb02bf1ea562a2d0e3f0206daad
      Merge: ac468dde 54e88b7
      Author: Ivan Maltz <ivanmaltz@google.com>
      Date:   Fri Oct 11 17:29:58 2013 -0700
      
          Move SVC code from vp9_spatial_scalable_encoder to libvpx module accessible from ffmpeg
      
      commit 54e88b78b160becc9569fc3c6cb6b0a8c95dc357
      Author: Ivan Maltz <ivanmaltz@google.com>
      Date:   Tue Oct 8 09:08:40 2013 -0700
      
          common svc encoding code for sample app and ffmpeg
      
          added svc_encodeframe.c, svc_context.h, svc_test.cc
      
          vp9_spatial_scalable_encoder uses vpx_svc_encode
      
      commit 5616ec8e2e3d3e8d277333d8a9242f6c70151162
      Merge: 4528014 e29137df
      Author: Ivan Maltz <ivanmaltz@google.com>
      Date:   Tue Oct 8 08:47:58 2013 -0700
      
          Merge branch 'master' into stratacaster
      
      commit 45280148450b1f3d61e390df8aadedf85cd5bce1
      Merge: bb2b675 1ab60f7b
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Fri Oct 4 10:22:31 2013 -0700
      
          Merge branch 'master' into stratacaster
      
      commit bb2b675e595dc9bfc8551e963edf56800c3aea61
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Wed Oct 2 12:37:26 2013 -0700
      
          Track individual frame sizes and psnrs instead of averages.
      
      commit c6d303b714795c81e7ceb4173967115c9f8ff5b7
      Merge: fa87df9 35830879
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Fri Sep 27 10:05:35 2013 -0700
      
          Merge branch 'master' into stratacaster
      
      commit fa87df94fba923d9f7aeb8ae20c6e15f777e00b5
      Merge: bf22d71 3c465af2
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Thu Sep 26 16:10:31 2013 -0700
      
          Merge branch 'master' into stratacaster
      
      commit bf22d7144895a82e0c348ac177c8a261b9e2b88e
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Thu Sep 26 11:10:34 2013 -0700
      
          Parameterized quantizer, 16th scalefactors, more logging, enabled single layer encodes to generate baseline.
      
      commit ceffd7e6025b765f9886b5ea0f324248aa37e327
      Author: Sujeevan Rajayogam <sujee@google.com>
      Date:   Thu Sep 19 10:04:49 2013 -0700
      
          - Include new mode for 3 layer I frame with 5 total layers.
          - Refactor svc api.
      
      Change-Id: Ie4d775e21e006fa597d884c59488dc999478e9b5
      663916ce
  13. Sep 30, 2013
  14. Sep 16, 2013
    • Adrian Grange's avatar
      Fix failure to copy data files if content changes · 5b23666e
      Adrian Grange authored
      Jenkins was failing to detect the case where an existing
      file is recreated with new content. In this case, thinking
      that the file already existed, Jenkins did not re-copy the
      file as it should have.
      
      By adding the file test-data.sha1 as a dependendency to
      the LIBVPX_TEST_DATA build target the files will be
      recopied if the MD5 of an existing file changes.
      
      This could be further improved to only copy files that
      have changed rather than copying the whole set as done in
      this patch.
      
      (Thanks to jzern@ who diagnozed ithe problem and suggested
      this fix).
      
      Change-Id: Icea7c61a95189bc639fec83020c28c70da5b2b41
      5b23666e
  15. Aug 06, 2013
    • 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
  16. 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
  17. 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
  18. Jun 25, 2013
  19. Jun 20, 2013
  20. 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
  21. Jun 13, 2013
  22. May 21, 2013
    • Martin Storsjö's avatar
      Add support for armv7-win32-vs11 · ad484fc6
      Martin Storsjö authored
      The arm assembly files are named .s after conversion, to reuse
      as much of the existing makefile infrastructure for conversion to
      gas format as possible. Within the generated visual studio project,
      only the converted assembly sources are available, which might not
      be optimal for actually developing it, but is acceptable for
      just building the library.
      
      Multithreading is disabled since the traditional win32 threading
      functions aren't available on WinRT/Windows Phone 8.
      
      Building of vpx itself and the examples succeed, while building the
      tests fail due to them using functions not available in the
      windows store/windows phone API subsets - therefore the unit tests
      are disabled.
      
      This works for building in Visual Studio Express 2012 for Windows
      Phone, while Visual Studio Express 2012 for Windows 8 (for
      "Windows Store" apps) seems to reject the vcxproj files due to
      not supporting "classic style native application or managed
      projects". The built static library should be compatible with that
      platform though.
      
      Change-Id: Idcd7eca60bfaaaeb09392a9cd7a02e4a670e3b30
      ad484fc6
    • Martin Storsjö's avatar
      msvs: Don't link to winmm.lib · a37e84d1
      Martin Storsjö authored
      Linking to this library doesn't seem to be necessary, and this library
      isn't available in the windows phone API subset.
      
      Change-Id: I179837d6f9c7407f1cb6101533dc978316a30adf
      a37e84d1
    • Martin Storsjö's avatar
      msvs: Pass dependency project vcxproj files to the project generation script · 9a5cac0a
      Martin Storsjö authored
      This is required since the dependencies are specified within the
      vcxproj files themselves, not in the solution file. This doesn't
      do anything for the old vcproj files.
      
      Change-Id: If7818d8e9dbf4aac5bcb34abe648946cf24db51c
      9a5cac0a
    • Martin Storsjö's avatar
      msvs: Support producing both vcproj and vcxproj depending on configure variables · 0b4637e0
      Martin Storsjö authored
      Change-Id: Ifa27c7064118c24401ea4e55a64e129c4f503cd5
      0b4637e0
  23. Apr 17, 2013
    • Johann Koenig's avatar
      Fix Android ndk-build · 3810bca9
      Johann Koenig authored
      Add the config directory to the rtcd generation script. libvpx is
      configured in the jni directory but ndk-build is intended to be run from
      the next directory up. Currently it needs to be run from the jni
      directory but this is being looked in to.
      
      Add a trailing slash to allow the variable to be empty.
      
      Reduce offset generation to the files which are actually used.
      
      Change-Id: Ia84fac37e8998ba647423d0ee45fc66a891ce10c
      3810bca9
  24. Apr 05, 2013
  25. Feb 22, 2013
  26. Jan 29, 2013
    • Johann Koenig's avatar
      obj_int_extract.bat is not a generated file · cdc18067
      Johann Koenig authored
      Trying to create Visual Studio project files would fail with:
      make[1]: *** No rule to make target `obj_int_extract.bat', needed by
      `.projects'.  Stop.
      
      Change-Id: Ie55458427ddea199a3de9973eaf2a37f711f839e
      cdc18067
  27. Jan 18, 2013
    • Johann Koenig's avatar
      Link pthread when it is available · b46d58ad
      Johann Koenig authored
      Linking when we don't use it but it is available is probably harmless.
      
      Gtest requires pthreads. Don't automatically enable unit tests if we
      don't have it.
      
      Change-Id: I5e6c3b609f840c7b6dbb36fc65809f0ef84685f8
      b46d58ad
  28. Jan 17, 2013
    • John Koleszar's avatar
      Don't include x86inc.asm on non-x86 targets · 23963021
      John Koleszar authored
      This file is currently unused, as the asm that depended on it has been
      disabled for the current roll into Chromium. It's expected that it
      will return in some form, so wrap it in an x86 check rather than
      deleting it. This extra file isn't really an issue with the libvpx
      build system, but affects the gyp builds since on ARM (android) it
      tries to do the ADS->GAS conversion on all .asm files reported in
      libvpx_srcs.txt.
      
      Change-Id: I080fbc22ab59fff41264ae230a48fa753594135b
      23963021
  29. Dec 26, 2012
  30. Dec 05, 2012
  31. Dec 04, 2012
  32. Dec 03, 2012
  33. Nov 28, 2012
  34. Nov 16, 2012
Loading