1. 21 May, 2013 - 3 commits
  2. 15 May, 2013 - 1 commit
  3. 13 May, 2013 - 2 commits
    • Martin Storsjo's avatar
      Add an option for building for arm in thumb mode · 132422d9
      Martin Storsjo authored
      Change-Id: I5a46645064c2fe1c13287cf06c3244820b4e699e
      132422d9
    • Martin Storsjo's avatar
      ads2gas: Allow converting code to thumb mode · 644587cf
      Martin Storsjo authored
      Currently this only supports thumb2.
      
      This involves rewriting certain instructions that can't be expressed
      in thumb2 into equivalent instruction sequences. The regexps for
      rewriting are currently written pretty narrowly, only covering the
      exact cases currently encountered in the code base.
      
      No IT instructions are added (since that would require more logic than
      plain regexps), so using the thumb mode requires enabling
      -mimplicit-it=always/thumb.
      
      Change-Id: I1f676ad1d351381f02bcf00105102aa8dd7ae364
      644587cf
  4. 03 May, 2013 - 2 commits
  5. 02 May, 2013 - 3 commits
  6. 01 May, 2013 - 1 commit
    • Martin Storsjo's avatar
      configure: arm: Check __ARM_PCS_VFP if the float ABI hasn't been defined · 2ce47839
      Martin Storsjo authored
      The support for detecting hardfp toolchains in af9dd50e is a
      step in the right direction, but that particular switch case
      isn't executed at all if the toolchain variable is set.
      
      This fixes cross building from x86 ubuntu to armhf ubuntu,
      in configurations such as
      "CROSS=arm-linux-gnueabihf- ./configure --target=armv7-linux-gcc".
      
      Change-Id: I6f141361e40374fbab564f9196d90e598fe9a0f6
      2ce47839
  7. 30 Apr, 2013 - 1 commit
  8. 29 Apr, 2013 - 2 commits
    • Jim Bankoski's avatar
      Change to fourcc to enable decoding of ffmpeg files. · 296421d8
      Jim Bankoski authored
      Change-Id: Ia16f167d904d53bc38cb3a8c841c6c52daad500f
      296421d8
    • Johann's avatar
      Match unsigned types · d82eb9d1
      Johann authored
      Fixes build warning in MSVC:
      vp9\vp9_dx_iface.c(420) : warning C4018: '<' : signed/unsigned mismatch
      vp9\vp9_dx_iface.c(423) : warning C4018: '<' : signed/unsigned mismatch
      
      Change-Id: Ia238071aee94b2f882c1e74c380adc3df506dfb6
      d82eb9d1
  9. 26 Apr, 2013 - 5 commits
  10. 25 Apr, 2013 - 2 commits
    • Johann's avatar
      Merge "Change default iOS dev path" · e292330e
      Johann authored
      e292330e
    • Johann's avatar
      Rename vp9_idct_x86.c · c5b127af
      Johann authored
      Remove similarly named header file. It is obsolete.
      
      Move file to match naming style.
      
      Adjust make file to include the file correctly and remove extra
      unnecessary #if guard.
      
      Change-Id: Ifba07ba9938a5df08a9f4eda54a3ac4d6983f7bf
      c5b127af
  11. 24 Apr, 2013 - 3 commits
  12. 23 Apr, 2013 - 2 commits
    • Johann's avatar
      Resolve declaration and implementation. · 7af58d43
      Johann authored
      Clean Windows build warnings:
      warning C4028: formal parameter <N> different from declaration
      
      This was fixed independently in master and experimental but the fixes
      were in opposite directions. One added const to the declaration and the
      other removed it from the implementation.
      
      Also update the variable names. This doesn't modify the data so call it
      ref, matching the functions in the vicinity, rather than dst.
      
      Change-Id: I2ffc6b4a874cb98c26487b909d20a5e099b5582c
      7af58d43
    • Johann's avatar
      Improve sign consistency. · ac980b71
      Johann authored
      Fix warning on windows: signed/unsigned mismatch on lines 415, 454
      
      Comparison was between size_t data_sz >= int index_sz on 415 and
      unsigned int data_sz >= int index_sz on 454. Both might be changed to
      size_t but that would be tracing and replacing all comparisons is
      outside the scope of this change.
      
      In the rest of these two functions ensure unsigned values are used
      consistently.
      
      Change-Id: I922b399ceca612a92f44b9d1d331c1c6bae9d768
      ac980b71
  13. 19 Apr, 2013 - 3 commits
  14. 18 Apr, 2013 - 2 commits
  15. 17 Apr, 2013 - 4 commits
    • Frank Galligan's avatar
      libvpx: Fix vp9 clang build. · 2bb8ecad
      Frank Galligan authored
      - UNINITIALIZED_IS_SAFE Macro triggers a warning in Clang for
        structs.
      
      Change-Id: Ib02c82f1fede7826564e17ccb7171c6fb18b8e44
      2bb8ecad
    • Johann's avatar
      Fix Android ndk-build · 3810bca9
      Johann 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
    • Johann's avatar
      Merge "Include RTCD header in encodeframe.c" · fc37c219
      Johann authored
      fc37c219
    • Jim Bankoski's avatar
      Merge "set up a speed 1" · cb044e6d
      Jim Bankoski authored
      cb044e6d
  16. 16 Apr, 2013 - 3 commits
  17. 15 Apr, 2013 - 1 commit
    • 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