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
b2bf9f4d
authored
Oct 14, 2021
by
olly
Committed by
Oliver Woodman
Oct 14, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Fix missing import
PiperOrigin-RevId: 403113286
parent
21cfd62c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/TrueHdSampleRechunker.java
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/AtomParsers.java
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/TrueHdSampleRechunker.java
View file @
b2bf9f4d
...
@@ -13,13 +13,13 @@
...
@@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* See the License for the specific language governing permissions and
* limitations under the License.
* limitations under the License.
*/
*/
package
com
.
google
.
android
.
exoplayer2
.
extractor
;
package
com
.
google
.
android
.
exoplayer2
.
extractor
;
import
static
com
.
google
.
android
.
exoplayer2
.
util
.
Assertions
.
checkState
;
import
static
com
.
google
.
android
.
exoplayer2
.
util
.
Assertions
.
checkState
;
import
androidx.annotation.Nullable
;
import
androidx.annotation.Nullable
;
import
com.google.android.exoplayer2.C
;
import
com.google.android.exoplayer2.C
;
import
com.google.android.exoplayer2.audio.Ac3Util
;
import
java.io.IOException
;
import
java.io.IOException
;
/**
/**
...
...
library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/AtomParsers.java
View file @
b2bf9f4d
...
@@ -1327,8 +1327,8 @@ import org.checkerframework.checker.nullness.compatqual.NullableType;
...
@@ -1327,8 +1327,8 @@ import org.checkerframework.checker.nullness.compatqual.NullableType;
parent
.
skipBytes
(
6
);
// sampleSize, compressionId, packetSize.
parent
.
skipBytes
(
6
);
// sampleSize, compressionId, packetSize.
sampleRate
=
parent
.
readUnsignedFixedPoint1616
();
sampleRate
=
parent
.
readUnsignedFixedPoint1616
();
parent
.
skipBytes
(-
4
);
// The sample rate has been redefined as a 32-bit value for Dolby TrueHD (MLP) streams.
// The sample rate has been redefined as a 32-bit value for Dolby TrueHD (MLP) streams.
parent
.
setPosition
(
parent
.
getPosition
()
-
4
);
sampleRateMlp
=
parent
.
readInt
();
sampleRateMlp
=
parent
.
readInt
();
if
(
quickTimeSoundDescriptionVersion
==
1
)
{
if
(
quickTimeSoundDescriptionVersion
==
1
)
{
...
...
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