1. 01 Nov, 2012 1 commit
  2. 31 Oct, 2012 1 commit
  3. 30 Oct, 2012 1 commit
  4. 26 Sep, 2012 1 commit
    • Glenn Kasten's avatar
      playbq's use of playback rate interface optional · f8d147df
      Glenn Kasten authored
      The playback rate interface is not supported for fast tracks,
      so to enable testing of fast tracks using playbq,
      only request the playback rate interface if it is actually needed.
      
      Change-Id: I15e512e1e853dccc752ad59c727bb0ed2d651162
      f8d147df
  5. 25 Aug, 2012 1 commit
  6. 25 Jun, 2012 1 commit
  7. 22 Jun, 2012 1 commit
  8. 09 May, 2012 1 commit
  9. 08 May, 2012 1 commit
    • Jean-Michel Trivi's avatar
      Playback rate on OpenSL ES AudioPlayer playing from URI/FD · 91145ef1
      Jean-Michel Trivi authored
      Allow AudioPlayer to use the platform's 500-2000 range (in
        permille) of playback rate for audio when the data source
        is a URI or FD.
      Since play events for those players are simulated through
        monitoring the playback position, scale the time
        between updates so play events are delivered in content
        time, not presentation time (as defined in OpenSL ES
        specification, "positions do not scale with changes in
        playback rate").
      
      Bug 5898620
      
      Change-Id: Ib512caebd7f3983c9e845be62e48dfee8499e59c
      91145ef1
  10. 25 Apr, 2012 1 commit
    • Andrew Hsieh's avatar
      Fixed runtime linkage problems for libOpenSLES and libOpenMAXAL · 84ed0307
      Andrew Hsieh authored
      Libraries libOpenSLES and libOpenMAXAL depends on liblog but Android.mk
      doesn't specify it.  Native app links libOpenSLES or libOpenMAXAL
      may fail with the following error message (taking
      $NDK/samples/native-media as an example)
      
      E/AndroidRuntime(  824): Caused by: java.lang.UnsatisfiedLinkError:
      Cannot load library: link_image[2260]:    82 could not load needed
      library 'libOpenMAXAL.so' for 'libnative-media-jni.so'
      (mips_relocate_got[1804]:    82 In 'libOpenMAXAL.so',
      can't locate symbol __android_log_assert)
      
      It's unclear why compiler (MIPS/ARM/X86) doesn't complain w/o liblog.
      It's also unclear why ARM and X86-based Android devices don't have
      runtime problem. (ie. $NDK/samples/native-media runs on ARM/X86 but
      fails in MIPS-based device)
      
      Fixed Android.mk to make it explicit.
      
      Change-Id: I12a254813f6b7cf98cc735d0a4d1f485e730f9fa
      84ed0307
  11. 18 Apr, 2012 1 commit
  12. 06 Apr, 2012 1 commit
    • Glenn Kasten's avatar
      Updates to Wilhelm's use of fast tracks · 78e61e01
      Glenn Kasten authored
      Move volume and mute/solo interfaces from blacklist to whitelist.
      Remove hard-coded frame count; this is now done at a lower level.
      
      Change-Id: Ie9b48941df799dd8cba45dc7015d62e5adb76f5d
      78e61e01
  13. 02 Apr, 2012 1 commit
  14. 27 Mar, 2012 2 commits
  15. 19 Mar, 2012 2 commits
  16. 16 Mar, 2012 2 commits
  17. 15 Mar, 2012 3 commits
  18. 13 Mar, 2012 1 commit
  19. 10 Mar, 2012 1 commit
  20. 09 Mar, 2012 2 commits
  21. 26 Feb, 2012 1 commit
  22. 13 Feb, 2012 1 commit
  23. 08 Feb, 2012 1 commit
  24. 01 Feb, 2012 3 commits
  25. 24 Jan, 2012 1 commit
  26. 17 Jan, 2012 1 commit
  27. 12 Jan, 2012 1 commit
  28. 09 Jan, 2012 3 commits
  29. 08 Jan, 2012 1 commit
  30. 06 Jan, 2012 1 commit
    • Glenn Kasten's avatar
      Fix bug in use of getPositionUsec() · a9391573
      Glenn Kasten authored
      getPositionUsec() returns int64_t, not uint32_t, so it would truncate
      after 71 minutes.  Also the check ANDROID_UNKNOWN_TIME always failed.
      
      Change-Id: I3152d7715dfe4b67a5fad6985c6717c7a802b464
      a9391573