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
355b3afa
authored
Dec 18, 2019
by
olly
Committed by
Oliver Woodman
Jan 17, 2020
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Read arrays directly from Parcel
PiperOrigin-RevId: 286197990
parent
54f6f482
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
7 deletions
library/core/src/main/java/com/google/android/exoplayer2/metadata/scte35/PrivateCommand.java
library/core/src/main/java/com/google/android/exoplayer2/offline/DownloadRequest.java
library/core/src/test/java/com/google/android/exoplayer2/metadata/MetadataRendererTest.java
library/core/src/test/java/com/google/android/exoplayer2/metadata/MetadataTest.java
library/core/src/main/java/com/google/android/exoplayer2/metadata/scte35/PrivateCommand.java
View file @
355b3afa
...
...
@@ -18,6 +18,7 @@ package com.google.android.exoplayer2.metadata.scte35;
import
android.os.Parcel
;
import
android.os.Parcelable
;
import
com.google.android.exoplayer2.util.ParsableByteArray
;
import
com.google.android.exoplayer2.util.Util
;
/**
* Represents a private command as defined in SCTE35, Section 9.3.6.
...
...
@@ -46,8 +47,7 @@ public final class PrivateCommand extends SpliceCommand {
private
PrivateCommand
(
Parcel
in
)
{
ptsAdjustment
=
in
.
readLong
();
identifier
=
in
.
readLong
();
commandBytes
=
new
byte
[
in
.
readInt
()];
in
.
readByteArray
(
commandBytes
);
commandBytes
=
Util
.
castNonNull
(
in
.
createByteArray
());
}
/* package */
static
PrivateCommand
parseFromSection
(
ParsableByteArray
sectionData
,
...
...
@@ -64,7 +64,6 @@ public final class PrivateCommand extends SpliceCommand {
public
void
writeToParcel
(
Parcel
dest
,
int
flags
)
{
dest
.
writeLong
(
ptsAdjustment
);
dest
.
writeLong
(
identifier
);
dest
.
writeInt
(
commandBytes
.
length
);
dest
.
writeByteArray
(
commandBytes
);
}
...
...
library/core/src/main/java/com/google/android/exoplayer2/offline/DownloadRequest.java
View file @
355b3afa
...
...
@@ -100,8 +100,7 @@ public final class DownloadRequest implements Parcelable {
}
streamKeys
=
Collections
.
unmodifiableList
(
mutableStreamKeys
);
customCacheKey
=
in
.
readString
();
data
=
new
byte
[
in
.
readInt
()];
in
.
readByteArray
(
data
);
data
=
castNonNull
(
in
.
createByteArray
());
}
/**
...
...
@@ -194,7 +193,6 @@ public final class DownloadRequest implements Parcelable {
dest
.
writeParcelable
(
streamKeys
.
get
(
i
),
/* parcelableFlags= */
0
);
}
dest
.
writeString
(
customCacheKey
);
dest
.
writeInt
(
data
.
length
);
dest
.
writeByteArray
(
data
);
}
...
...
library/core/src/test/java/com/google/android/exoplayer2/metadata/MetadataRendererTest.java
View file @
355b3afa
...
...
@@ -12,7 +12,6 @@
* 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
com
.
google
.
android
.
exoplayer2
.
metadata
;
...
...
library/core/src/test/java/com/google/android/exoplayer2/metadata/MetadataTest.java
0 → 100644
View file @
355b3afa
/*
* Copyright (C) 2019 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
com
.
google
.
android
.
exoplayer2
.
metadata
;
import
static
com
.
google
.
common
.
truth
.
Truth
.
assertThat
;
import
android.os.Parcel
;
import
androidx.test.ext.junit.runners.AndroidJUnit4
;
import
com.google.android.exoplayer2.metadata.id3.BinaryFrame
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
/** Tests for {@link Metadata}. */
@RunWith
(
AndroidJUnit4
.
class
)
public
class
MetadataTest
{
@Test
public
void
testParcelable
()
{
Metadata
metadataToParcel
=
new
Metadata
(
new
BinaryFrame
(
"id1"
,
new
byte
[]
{
1
}),
new
BinaryFrame
(
"id2"
,
new
byte
[]
{
2
}));
Parcel
parcel
=
Parcel
.
obtain
();
metadataToParcel
.
writeToParcel
(
parcel
,
0
);
parcel
.
setDataPosition
(
0
);
Metadata
metadataFromParcel
=
Metadata
.
CREATOR
.
createFromParcel
(
parcel
);
assertThat
(
metadataFromParcel
).
isEqualTo
(
metadataToParcel
);
parcel
.
recycle
();
}
}
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