Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5dc8eeb4
authored
Aug 09, 2021
by
olly
Committed by
Oliver Woodman
Aug 09, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Remove IntArrayQueue from public API
PiperOrigin-RevId: 389622428
parent
db1fe804
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/AsynchronousMediaCodecCallback.java
library/core/src/main/java/com/google/android/exoplayer2/util/IntArrayQueue.java → library/core/src/main/java/com/google/android/exoplayer2/mediacodec/IntArrayQueue.java
library/core/src/test/java/com/google/android/exoplayer2/util/IntArrayQueueTest.java → library/core/src/test/java/com/google/android/exoplayer2/mediacodec/IntArrayQueueTest.java
library/core/src/main/java/com/google/android/exoplayer2/mediacodec/AsynchronousMediaCodecCallback.java
View file @
5dc8eeb4
...
...
@@ -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
;
...
...
library/core/src/main/java/com/google/android/exoplayer2/
util
/IntArrayQueue.java
→
library/core/src/main/java/com/google/android/exoplayer2/
mediacodec
/IntArrayQueue.java
View file @
5dc8eeb4
...
...
@@ -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
;
...
...
library/core/src/test/java/com/google/android/exoplayer2/
util
/IntArrayQueueTest.java
→
library/core/src/test/java/com/google/android/exoplayer2/
mediacodec
/IntArrayQueueTest.java
View file @
5dc8eeb4
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment