transcoding: Actually hide the isSlowMotionSupported api.

Bug: 169965769
Test: atest  CtsMediaTranscodingTestCases:MediaTranscodeManagerTest
Change-Id: Ie0ac848516cc3fbd22e86c66a8e6b00c0a3606d3
This commit is contained in:
hkuang 2021-04-15 09:21:39 -07:00 committed by Hangyu Kuang
parent 4b280f2955
commit f7d8ad2a8a
2 changed files with 5 additions and 6 deletions

View File

@ -10,7 +10,6 @@ package android.media {
method @NonNull public java.util.List<java.lang.String> getUnsupportedVideoMimeTypes();
method public boolean isFormatSpecified(@NonNull String);
method public boolean isHdrTypeSupported(@NonNull String);
method public boolean isSlowMotionSupported();
method public boolean isVideoMimeTypeSupported(@NonNull String);
method public void writeToParcel(@NonNull android.os.Parcel, int);
field @NonNull public static final android.os.Parcelable.Creator<android.media.ApplicationMediaCapabilities> CREATOR;

View File

@ -242,7 +242,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
}
};
/*
/**
* Query the video codec mime types supported by the application.
* @return List of supported video codec mime types. The list will be empty if there are none.
*/
@ -251,7 +251,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
return new ArrayList<>(mSupportedVideoMimeTypes);
}
/*
/**
* Query the video codec mime types that are not supported by the application.
* @return List of unsupported video codec mime types. The list will be empty if there are none.
*/
@ -260,7 +260,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
return new ArrayList<>(mUnsupportedVideoMimeTypes);
}
/*
/**
* Query all hdr types that are supported by the application.
* @return List of supported hdr types. The list will be empty if there are none.
*/
@ -269,7 +269,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
return new ArrayList<>(mSupportedHdrTypes);
}
/*
/**
* Query all hdr types that are not supported by the application.
* @return List of unsupported hdr types. The list will be empty if there are none.
*/
@ -278,7 +278,7 @@ public final class ApplicationMediaCapabilities implements Parcelable {
return new ArrayList<>(mUnsupportedHdrTypes);
}
/*
/**
* Whether handling of slow-motion video is supported
* @hide
*/