mirror of
https://github.com/samsonjs/media.git
synced 2026-04-21 13:55:47 +00:00
Remove IntArrayQueue from public API
PiperOrigin-RevId: 389622428
This commit is contained in:
parent
db1fe8041b
commit
5dc8eeb4bf
3 changed files with 3 additions and 4 deletions
|
|
@ -27,7 +27,6 @@ import androidx.annotation.GuardedBy;
|
|||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.RequiresApi;
|
||||
import com.google.android.exoplayer2.util.IntArrayQueue;
|
||||
import com.google.android.exoplayer2.util.Util;
|
||||
import java.util.ArrayDeque;
|
||||
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.google.android.exoplayer2.util;
|
||||
package com.google.android.exoplayer2.mediacodec;
|
||||
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ import java.util.NoSuchElementException;
|
|||
* <p>Use this class instead of a {@link java.util.Deque} to avoid boxing int primitives to {@link
|
||||
* Integer} instances.
|
||||
*/
|
||||
public final class IntArrayQueue {
|
||||
/* package */ final class IntArrayQueue {
|
||||
|
||||
/** Default capacity needs to be a power of 2. */
|
||||
private static final int DEFAULT_INITIAL_CAPACITY = 16;
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.google.android.exoplayer2.util;
|
||||
package com.google.android.exoplayer2.mediacodec;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
import static org.junit.Assert.fail;
|
||||
Loading…
Reference in a new issue