@@ -2445,30 +2445,29 @@ public IRingtonePlayer getRingtonePlayer() {
24452445 }
24462446
24472447 /**
2448- * Used as a key for #getProperty to request the native or optimal output sample rate for
2449- * this device, in decimal Hz.
2450- * {@hide}
2448+ * Used as a key for {@link #getProperty} to request the native or optimal output sample rate
2449+ * for this device's primary output stream, in decimal Hz.
24512450 */
24522451 public static final String PROPERTY_OUTPUT_SAMPLE_RATE =
24532452 "android.media.property.OUTPUT_SAMPLE_RATE" ;
24542453
24552454 /**
2456- * Used as a key for #getProperty to request the native or optimal output buffer size for
2457- * this device, in decimal PCM frames.
2458- * {@hide}
2455+ * Used as a key for {@link #getProperty} to request the native or optimal output buffer size
2456+ * for this device's primary output stream, in decimal PCM frames.
24592457 */
24602458 public static final String PROPERTY_OUTPUT_FRAMES_PER_BUFFER =
24612459 "android.media.property.OUTPUT_FRAMES_PER_BUFFER" ;
24622460
24632461 /**
2462+ * Returns the value of the property with the specified key.
24642463 * @param key One of the strings corresponding to a property key: either
2465- * #PROPERTY_OUTPUT_SAMPLE_RATE or #PROPERTY_OUTPUT_FRAMES_PER_BUFFER
2464+ * {@link #PROPERTY_OUTPUT_SAMPLE_RATE} or
2465+ * {@link #PROPERTY_OUTPUT_FRAMES_PER_BUFFER}
24662466 * @return A string representing the associated value for that property key,
24672467 * or null if there is no value for that key.
2468- * {@hide}
24692468 */
24702469 public String getProperty (String key ) {
2471- // uses android.os.SystemProperties.get for selected keys, with suitable defaults
2470+ // implementation to be written
24722471 return null ;
24732472 }
24742473
0 commit comments