Skip to content

Commit

Permalink
Update transformer error codes bug references
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 410216171
  • Loading branch information
andrewlewis authored and icbaker committed Nov 19, 2021
1 parent 79f03bb commit f10b705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public AudioSamplePipeline(
try {
this.decoder = MediaCodecAdapterWrapper.createForAudioDecoding(decoderInputFormat);
} catch (IOException e) {
// TODO (internal b/184262323): Assign an adequate error code.
// TODO(internal b/192864511): Assign a specific error code.
throw ExoPlaybackException.createForRenderer(
e,
TAG,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public VideoSamplePipeline(
.build(),
ImmutableMap.of());
} catch (IOException e) {
// TODO (internal b/184262323): Assign an adequate error code.
// TODO(internal b/192864511): Assign a specific error code.
throw createRendererException(
e, rendererIndex, decoderInputFormat, PlaybackException.ERROR_CODE_UNSPECIFIED);
}
Expand Down

0 comments on commit f10b705

Please sign in to comment.