1. 26 Apr, 2013 - 1 commit
    • Johann's avatar
      Normalize more intrinsic filenames · 863601c5
      Johann authored
      vp9_dequantize_x86 has only sse2 functions.
      
      vp9_dct_sse2_intrinsics has no namespace collision and can drop
      _intrinsics.
      
      vp9_idct_mmx.h is unused.
      
      Change-Id: Ic16e31fb372a1d1e841a62ecb4189fe8f95808ec
      863601c5
  2. 25 Apr, 2013 - 1 commit
    • 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
  3. 24 Apr, 2013 - 2 commits
  4. 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
  5. 19 Apr, 2013 - 3 commits
  6. 18 Apr, 2013 - 2 commits
  7. 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
  8. 16 Apr, 2013 - 3 commits
  9. 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
  10. 12 Apr, 2013 - 1 commit
    • Marco Paniconi's avatar
      Fix for multi-res-encoding: · 282c9639
      Marco Paniconi authored
      Use local variable for setting the improved prediction mode.
      cpi->sf.improved_mv_pred is set/fixed at the frame level
      and should not be changed inside pick_inter_mode.
      
      Change-Id: Ie28d9171ac000e631af0e30204970e3d4fff3078
      282c9639
  11. 05 Apr, 2013 - 2 commits
  12. 02 Apr, 2013 - 2 commits
    • Johann's avatar
      Demux vp9_loopfilter_x86.c · 3db60c8c
      Johann authored
      Allow more careful targeting of compiler flags.
      
      Change-Id: I963ab4a6479dedb165419310dfca52a58a9877b8
      3db60c8c
    • Johann's avatar
      vp9_sadmxn_x86 only contains SSE2 functions · 6c147b9d
      Johann authored
      Rename the file and clean up includes. In the future we would like to
      pattern match the files which need additional compiler flags.
      
      Change-Id: I2c76256467f392a78dd4ccc71e6e0a580e158e56
      6c147b9d
  13. 01 Apr, 2013 - 1 commit
  14. 29 Mar, 2013 - 7 commits
  15. 28 Mar, 2013 - 8 commits