1. 01 Mar, 2014 - 2 commits
    • James Zern's avatar
      nestegg: fix track_number uint64->uint32 warnings · ba159a3b
      James Zern authored
      ne_read_block/ne_find_cue_position_for_track/nestegg_get_cue_point
      in the use of ne_map_track_number_to_index
      + add a check to ensure it doesn't exceed the type bounds
      
      fixes:
      ./third_party/nestegg/src/nestegg.c|1322| warning C4244: 'function' :
      conversion from 'uint64_t' to 'unsigned int', possible loss of data
      
      Change-Id: I3703d739dcf9a2d4d8e2b704e957e5e3fd80dca0
      ba159a3b
    • James Zern's avatar
      nestegg: add ne_get_uint32 convenience function · d743bd04
      James Zern authored
      - avoids downcasting from uint64_t in multiple locations
      
      Change-Id: Ia6f669a9ee81336ed1ef29a6a79240d5905acab5
      d743bd04
  2. 22 Feb, 2014 - 1 commit
  3. 06 Feb, 2014 - 1 commit
    • Ralph Giles's avatar
      libmkv: fix Makefile. · 09014580
      Ralph Giles authored
      Update the local makefile to build all the files and the test
      application by default to simplify build verification.
      
      Change-Id: Ic10141ea14c85110ff7507447d16297b77d296e9
      09014580
  4. 05 Feb, 2014 - 2 commits
  5. 01 Feb, 2014 - 1 commit
  6. 31 Jan, 2014 - 1 commit
  7. 25 Oct, 2013 - 1 commit
    • Dmitry Kovalev's avatar
      Updating gtest from 1.6.0 to 1.7.0. · 9f528ce0
      Dmitry Kovalev authored
      This is required in order to build libvpx on OS X Mavericks where gcc
      compiler is deleted, clang (3.3) is the default now.
      
      Using unmodified source files from gtest-1.7.0/fused-src folder.
      
      Change-Id: I3d5f7278149c904e48737327daf7097a8bb0b390
      9f528ce0
  8. 07 Oct, 2013 - 1 commit
  9. 23 Sep, 2013 - 1 commit
    • Yunqing Wang's avatar
      Hide global symbols for macho32/64 · 071395de
      Yunqing Wang authored
      Added hiding global symbols for macho32 and macho64 in x86inc.asm.
      This was done to fix exported symbol issue in Chrome build.
      
      Change-Id: I08d5c559b985b82f655b537469fee125615e78c0
      071395de
  10. 18 Sep, 2013 - 1 commit
    • Yunqing Wang's avatar
      Fix x86inc.asm to build PIC code correctly · 9d901217
      Yunqing Wang authored
      Current x86inc.asm didn't handle 32bit PIC build properly.
      TEXTRELs were seen in the library built. The PIC macros from
      libvpx's x86_abi_support.asm was used to fix this problem.
      The assembly code was modified to use the macros.
      
      Notes: We need this fix in for decoder building. Functions in
      encoder will be fixed later.
      
      Change-Id: Ifa548d37b1d0bc7d0528db75009cc18cd5eb1838
      9d901217
  11. 22 Jul, 2013 - 1 commit
  12. 04 Jun, 2013 - 1 commit
    • John Koleszar's avatar
      Fix mingw build error · 98ca829f
      John Koleszar authored
      Fixes an issue where newer versions of GCC would try to compile the
      visual studio inline assembly.
      
      Fixes issue #571
      
      Change-Id: I8e4500a9277447fdab0b55e5efa1f24ca97bdc03
      98ca829f
  13. 03 Feb, 2013 - 1 commit
  14. 01 Feb, 2013 - 1 commit
  15. 31 Oct, 2012 - 1 commit
  16. 22 Aug, 2012 - 1 commit
  17. 20 Jun, 2012 - 1 commit
  18. 18 Jun, 2012 - 1 commit
  19. 11 May, 2012 - 1 commit
  20. 03 May, 2012 - 1 commit
  21. 13 Dec, 2011 - 1 commit
    • Yunqing Wang's avatar
      Align image buffer in multiple-resolution encoder · 153eec46
      Yunqing Wang authored
      Aligned the image buffer and stride to 32 bytes. This enables
      calling of optimized scaler function in libyuv, and improves
      the performance.
      
      Tested libyuv scaler(x86 optimization) on Linux and Windows,
      including: Linux 32/64bit, visual studio 32/64bit, Cygwin, and
      MinGW32.
      
      Also, fixed a wrong pointer in vpx_codec_encode().
      
      Change-Id: Ibe97d7a0a745f82c43852fa4ed719be5a4db6abc
      153eec46
  22. 05 Dec, 2011 - 1 commit
    • Yunqing Wang's avatar
      Multiple-resolution encoder · aa7335e6
      Yunqing Wang authored
      The example encoder down-samples the input video frames a number of
      times with a down-sampling factor, and then encodes and outputs
      bitstreams with different resolutions.
      
      Support arbitrary down-sampling factor, and down-sampling factor
      can be different for each encoding level.
      
      For example, the encoder can be tested as follows.
      1. Configure with multi-resolution encoding enabled:
      ../libvpx/configure --target=x86-linux-gcc --disable-codecs
      --enable-vp8 --enable-runtime_cpu_detect --enable-debug
      --disable-install-docs --enable-error-concealment
      --enable-multi-res-encoding
      2. Run make
      3. Encode:
      If input video is 1280x720, run:
      ./vp8_multi_resolution_encoder 1280 720 input.yuv 1.ivf 2.ivf 3.ivf 1
      (output: 1.ivf(1280x720); 2.ivf(640x360); 3.ivf(320x180).
      The last parameter is set to 1/0 to show/not show PSNR.)
      4. Decode:
      ./simple_decoder 1.ivf 1.yuv
      ./simple_decoder 2.ivf 2.yuv
      ./simple_decoder 3.ivf 3.yuv
      5. View video:
      mplayer 1.yuv -demuxer rawvideo -rawvideo w=1280:h=720 -loop 0 -fps 30
      mplayer 2.yuv -demuxer rawvideo -rawvideo w=640:h=360 -loop 0 -fps 30
      mplayer 3.yuv -demuxer rawvideo -rawvideo w=320:h=180 -loop 0 -fps 30
      
      The encoding parameters can be modified in vp8_multi_resolution_encoder.c,
      for example, target bitrate, frame rate...
      
      Modified API. John helped a lot with that. Thanks!
      
      Change-Id: I03be9a51167eddf94399f92d269599fb3f3d54f5
      aa7335e6
  23. 05 Nov, 2011 - 1 commit
    • James Zern's avatar
      fix file permissions · f89ea343
      James Zern authored
      all of googletest import (0ab00a22) was marked executable
      
      Change-Id: Id7b7ee03efc21ab998bb03349bd91644e8af25da
      f89ea343
  24. 04 Nov, 2011 - 1 commit