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

Commit 0d87aa1a authored by hkuang's avatar hkuang Committed by Automerger Merge Worker
Browse files

transcoding: Actually hide the isSlowMotionSupported api. am: f7d8ad2a

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14200225

Change-Id: I1701d0c37def28e2ab691ee77c4a2811d5aee3e1
parents 6194fddd f7d8ad2a
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
     */