public final class

VideoSize

extends java.lang.Object

 java.lang.Object

↳androidx.media2.VideoSize

Gradle dependencies

compile group: 'androidx.media2', name: 'media2', version: '1.0.0-alpha04'

  • groupId: androidx.media2
  • artifactId: media2
  • version: 1.0.0-alpha04

Artifact androidx.media2:media2:1.0.0-alpha04 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.media2:media2 com.android.support:media2

Overview

Immutable class for describing video size.

Summary

Constructors
publicVideoSize(int width, int height)

Creates a new immutable VideoSize instance.

Methods
public booleanequals(java.lang.Object obj)

Checks if this video size is equal to another video size.

public intgetHeight()

Returns the height of the video.

public intgetWidth()

Returns the width of the video.

public inthashCode()

public java.lang.StringtoString()

Return the video size represented as a string with the format "WxH"

from java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait

Constructors

public VideoSize(int width, int height)

Creates a new immutable VideoSize instance.

Parameters:

width: The width of the video
height: The height of the video

Methods

public int getWidth()

Returns the width of the video.

public int getHeight()

Returns the height of the video.

public boolean equals(java.lang.Object obj)

Checks if this video size is equal to another video size.

Two video sizes are equal if and only if both their widths and heights are equal.

A video size object is never equal to any other type of object.

Returns:

true if the objects were equal, false otherwise

public java.lang.String toString()

Return the video size represented as a string with the format "WxH"

Returns:

string representation of the video size

public int hashCode()

Source

/*
 * Copyright 2018 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.media2;

import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP;

import androidx.annotation.RestrictTo;

/**
 * Immutable class for describing video size.
 */
public final class VideoSize {
    /**
     * Creates a new immutable VideoSize instance.
     *
     * @param width The width of the video
     * @param height The height of the video
     * @hide
     */
    @RestrictTo(LIBRARY_GROUP)
    public VideoSize(int width, int height) {
        mWidth = width;
        mHeight = height;
    }

    /**
     * Returns the width of the video.
     */
    public int getWidth() {
        return mWidth;
    }

    /**
     * Returns the height of the video.
     */
    public int getHeight() {
        return mHeight;
    }

    /**
     * Checks if this video size is equal to another video size.
     * <p>
     * Two video sizes are equal if and only if both their widths and heights are
     * equal.
     * </p>
     * <p>
     * A video size object is never equal to any other type of object.
     * </p>
     *
     * @return {@code true} if the objects were equal, {@code false} otherwise
     */
    @Override
    public boolean equals(final Object obj) {
        if (obj == null) {
            return false;
        }
        if (this == obj) {
            return true;
        }
        if (obj instanceof VideoSize) {
            VideoSize other = (VideoSize) obj;
            return mWidth == other.mWidth && mHeight == other.mHeight;
        }
        return false;
    }

    /**
     * Return the video size represented as a string with the format {@code "WxH"}
     *
     * @return string representation of the video size
     */
    @Override
    public String toString() {
        return mWidth + "x" + mHeight;
    }

    @Override
    public int hashCode() {
        // assuming most sizes are <2^16, doing a rotate will give us perfect hashing
        return mHeight ^ ((mWidth << (Integer.SIZE / 2)) | (mWidth >>> (Integer.SIZE / 2)));
    }

    private final int mWidth;
    private final int mHeight;
}