Update transformer error codes bug references

PiperOrigin-RevId: 410216171
This commit is contained in:
andrewlewis 2021-11-16 12:12:03 +00:00 committed by Ian Baker
parent 79f03bb135
commit f10b705b61
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
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,

View File

@ -80,7 +80,7 @@ import java.io.IOException;
.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);
}