Skip to content
Snippets Groups Projects
  1. May 02, 2014
  2. Apr 26, 2014
    • James Zern's avatar
      Makefile: add msvs_common.sh to DIST-SRCS · 5ba44e37
      James Zern authored
      dist is broken in msvs currently due to a dependency on libs.mk which in
      turn depends on the rest of the source tree, not just the examples
      
      Change-Id: I3e313ceeae81eb29ef4bfb099d89756b43583eaa
      5ba44e37
  3. Apr 24, 2014
  4. Apr 23, 2014
  5. Apr 22, 2014
  6. Apr 04, 2014
  7. Apr 03, 2014
  8. 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
  9. Mar 28, 2014
  10. Mar 27, 2014
  11. Mar 25, 2014
  12. Mar 20, 2014
  13. Mar 19, 2014
    • Martin Storsjö's avatar
      ads2armasm_ms: Add an ALIGN 4 after ENDP · 5182befa
      Martin Storsjö authored
      This makes sure that labels for data symbols directly after
      functions get properly 4-byte-aligned (when the source is assembled
      in thumb mode).
      
      Previously, if declaring a data symbol directly after a function, the
      symbol could end up pointing to the unaligned address (if the total
      size of the thumb function didn't end up being a multiple of 4). The
      data in the symbol itself ended up aligned, but the symbol pointed to
      the preceding unaligned position.
      
      That is, a source file looking like this:
      ---
         ...
         ENDP
      
      symbol
         DCD 0x12345678
      ---
      
      could end up being assembled into
      symbol:
        xxxxx2: 0000
        xxxxx4: 5678
        xxxxx6: 1234
      
      (This doesn't happen if the symbol label is on the same line as the
      DCD directive.)
      
      By adding an ALIGN 4 directly after the ENDP we make sure the symbol
      itself gets aligned properly.
      
      This isn't an issue with the original, untranslated arm source,
      since it only is built in arm mode where all instructions are 4 byte,
      and since the gnu assembler automatically adds the padding before the
      symbol even in thumb mode.
      
      Change-Id: Iadbeebd656b0197e423e79a12a7d3ef8859cf445
      5182befa
    • James Zern's avatar
      configure: test -m(mmx|sse|sse2|sse3) flags · c0d67377
      James Zern authored
      <=sse2 isn't strictly necessary on x86_64, but this is more consistent
      with the rest of the flags and should be harmless
      
      Change-Id: Ice0f1d1c4c7510ee90af2a62dbd3d6508db63487
      c0d67377
    • James Zern's avatar
      configure: test for -mssse3 · f1e8d58a
      James Zern authored
      fixes compile with older versions of gcc
      
      Change-Id: If529f3102dbc926be8d5fb91d4161fa686c11840
      f1e8d58a
    • James Zern's avatar
      configure: factorize gcc machine option checks · c37ecba7
      James Zern authored
      check_gcc_machine_option() replaces individual -m* checks
      
      Change-Id: I0f4a82020c0541b99209321907e80e071d1245e1
      c37ecba7
  14. Mar 17, 2014
    • Martin Storsjö's avatar
      thumb: Clarify a comment about the conversions that are done · 317e07ee
      Martin Storsjö authored
      The comment made it look like the condition code was dropped from
      the extra add instruction, while it actually was handled properly.
      
      Thus, the comment was misleading while the code itself did the right
      thing.
      
      Also clarify the comment indicating that we use the full three-operand
      form of the add instruction.
      
      Change-Id: I2c1ac6ac4fedf262d104ea30a6c005febc74de9c
      317e07ee
  15. 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
  16. Mar 06, 2014
  17. Mar 05, 2014
  18. 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
  19. Feb 28, 2014
    • James Zern's avatar
      normalize perl shebangs · b6941849
      James Zern authored
      don't require perl to be in a fixed location
      
      Change-Id: Icc8b6113a2a3626f847fe46409334a03f1db5c85
      b6941849
    • James Zern's avatar
      rtcd.sh: sort functions by name · bd7467dd
      James Zern authored
      this will aid in output comparison with other generation systems
      
      Change-Id: Ifb66321e45ab9fdd9eaeb5e0ea8b3d0632efe7ce
      bd7467dd
  20. Feb 27, 2014
  21. Feb 24, 2014
  22. Feb 21, 2014
  23. Feb 20, 2014
  24. Feb 12, 2014
    • Tom Finegan's avatar
      gen_msvs_vcxproj.sh: Add /arch:AVX for files using AVX. · 7836e3a5
      Tom Finegan authored
      Turns on AVX when the final characters of .c and .cc file names preceding the
      .c and .cc file extension contain the substrings avx or avx2. This silences
      many MSVC warnings issued during compilation files that use AVX.
      
      Change-Id: I82bda394af7a688679abab2a50dd7e10b3cb0c7a
      7836e3a5
  25. Feb 06, 2014
  26. Feb 05, 2014
  27. Feb 04, 2014
  28. Jan 28, 2014
  29. Jan 27, 2014
Loading