Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7d8ad2a authored by hkuang's avatar hkuang Committed by Hangyu Kuang
Browse files

transcoding: Actually hide the isSlowMotionSupported api.

Bug: 169965769
Test: atest  CtsMediaTranscodingTestCases:MediaTranscodeManagerTest
Change-Id: Ie0ac848516cc3fbd22e86c66a8e6b00c0a3606d3
parent 4b280f29
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;
+5 −5
Original line number Diff line number Diff line
@@ -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
     */