am 37490462: Merge "Unhide MediaExtractor.getPsshInfo()" into jb-mr2-dev

* commit '374904621a79eb12416da4a26be515ae9a2d243a':
  Unhide MediaExtractor.getPsshInfo()
This commit is contained in:
Marco Nelissen
2013-06-11 14:10:26 -07:00
committed by Android Git Automerger
2 changed files with 3 additions and 2 deletions

View File

@@ -11884,6 +11884,7 @@ package android.media {
ctor public MediaExtractor();
method public boolean advance();
method public long getCachedDuration();
method public java.util.Map<java.util.UUID, byte[]> getPsshInfo();
method public boolean getSampleCryptoInfo(android.media.MediaCodec.CryptoInfo);
method public int getSampleFlags();
method public long getSampleTime();

View File

@@ -199,9 +199,9 @@ final public class MediaExtractor {
public native final int getTrackCount();
/**
* Get the PSSH info if present. This returns a map of uuid-to-bytes, with the uuid specifying
* Get the PSSH info if present.
* @return a map of uuid-to-bytes, with the uuid specifying
* the crypto scheme, and the bytes being the data specific to that scheme.
* {@hide}
*/
public Map<UUID, byte[]> getPsshInfo() {
Map<UUID, byte[]> psshMap = null;