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
37d3468e
authored
Nov 16, 2021
by
andrewlewis
Committed by
tonihei
Nov 16, 2021
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Update transformer error codes bug references
PiperOrigin-RevId: 410216171
parent
ecb47ba5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/AudioSamplePipeline.java
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/VideoSamplePipeline.java
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/AudioSamplePipeline.java
View file @
37d3468e
...
@@ -88,7 +88,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
...
@@ -88,7 +88,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
try
{
try
{
this
.
decoder
=
MediaCodecAdapterWrapper
.
createForAudioDecoding
(
decoderInputFormat
);
this
.
decoder
=
MediaCodecAdapterWrapper
.
createForAudioDecoding
(
decoderInputFormat
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
// TODO
(internal b/184262323): Assign an adequate
error code.
// TODO
(internal b/192864511): Assign a specific
error code.
throw
ExoPlaybackException
.
createForRenderer
(
throw
ExoPlaybackException
.
createForRenderer
(
e
,
e
,
TAG
,
TAG
,
...
...
library/transformer/src/main/java/com/google/android/exoplayer2/transformer/VideoSamplePipeline.java
View file @
37d3468e
...
@@ -80,7 +80,7 @@ import java.io.IOException;
...
@@ -80,7 +80,7 @@ import java.io.IOException;
.
build
(),
.
build
(),
ImmutableMap
.
of
());
ImmutableMap
.
of
());
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
// TODO
(internal b/184262323): Assign an adequate
error code.
// TODO
(internal b/192864511): Assign a specific
error code.
throw
createRendererException
(
throw
createRendererException
(
e
,
rendererIndex
,
decoderInputFormat
,
PlaybackException
.
ERROR_CODE_UNSPECIFIED
);
e
,
rendererIndex
,
decoderInputFormat
,
PlaybackException
.
ERROR_CODE_UNSPECIFIED
);
}
}
...
...
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