Modify java doc

Modified java doc for METADATA_KEY_SAMPLERATE and
METADATA_KEY_BITS_PER_SAMPLE in MediaMetadataRetriever.

Test: api update
Bug: 155718941

Change-Id: I3d0d7acf1cafc53d635744810238e9bb6b57b917
This commit is contained in:
Dichen Zhang
2020-05-12 16:03:19 -07:00
parent 8508308f4d
commit e36fd0282c

View File

@@ -1335,13 +1335,13 @@ public class MediaMetadataRetriever implements AutoCloseable {
/**
* This key retrieves the sample rate in Hz, if available.
* In int32_t type in native code, query returns String.
* This is a signed 32-bit integer formatted as a string in base 10.
*/
public static final int METADATA_KEY_SAMPLERATE = 38;
/**
* This key retrieves the bits per sample in numbers of bits, if available.
* In int32_t type in native code, query returns String.
* This is a signed 32-bit integer formatted as a string in base 10.
*/
public static final int METADATA_KEY_BITS_PER_SAMPLE = 39;
}