diff --git a/api/current.txt b/api/current.txt
index 0cc4013a101b7..024ba3fb01511 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -26878,9 +26878,11 @@ package android.media {
field public static final int CONNECTION_STATE_CONNECTING = 1; // 0x1
field public static final int CONNECTION_STATE_DISCONNECTED = 0; // 0x0
field @NonNull public static final android.os.Parcelable.Creator
* A route that supports remote playback routing will allow an application to send * requests to play content remotely to supported destinations. + * A route may only support {@link #FEATURE_REMOTE_AUDIO_PLAYBACK audio playback} or + * {@link #FEATURE_REMOTE_VIDEO_PLAYBACK video playback}. *
* Remote playback routes destinations operate independently of the local device. * When a remote playback route is selected, the application can control the content @@ -274,9 +276,35 @@ public final class MediaRoute2Info implements Parcelable { *
* Refer to the class documentation for details about remote playback routes. *
+ * @see #FEATURE_REMOTE_AUDIO_PLAYBACK + * @see #FEATURE_REMOTE_VIDEO_PLAYBACK */ public static final String FEATURE_REMOTE_PLAYBACK = - "android.media.intent.category.REMOTE_PLAYBACK"; + "android.media.route.feature.REMOTE_PLAYBACK"; + + /** + * Media feature: Remote audio playback. + *+ * A route that supports remote audio playback routing will allow an application to send + * requests to play audio content remotely to supported destinations. + * + * @see #FEATURE_REMOTE_PLAYBACK + * @see #FEATURE_REMOTE_VIDEO_PLAYBACK + */ + public static final String FEATURE_REMOTE_AUDIO_PLAYBACK = + "android.media.route.feature.REMOTE_AUDIO_PLAYBACK"; + + /** + * Media feature: Remote video playback. + *
+ * A route that supports remote video playback routing will allow an application to send + * requests to play video content remotely to supported destinations. + * + * @see #FEATURE_REMOTE_PLAYBACK + * @see #FEATURE_REMOTE_AUDIO_PLAYBACK + */ + public static final String FEATURE_REMOTE_VIDEO_PLAYBACK = + "android.media.route.feature.REMOTE_VIDEO_PLAYBACK"; final String mId; final CharSequence mName;