Commit 67b47756 by Oliver Woodman

Temporary fix to prevent premature failures during HLS playbacks

parent 85256bef
......@@ -145,7 +145,9 @@ public class MetadataTrackRenderer<T> extends TrackRenderer implements Callback
inputStreamEnded = true;
}
} catch (IOException e) {
throw new ExoPlaybackException(e);
// TODO: This should be propagated, but in the current design propagation may occur too
// early. See [Internal b/22291244].
// throw new ExoPlaybackException(e);
}
}
......
......@@ -153,7 +153,9 @@ public class Eia608TrackRenderer extends TrackRenderer implements Callback {
inputStreamEnded = true;
}
} catch (IOException e) {
throw new ExoPlaybackException(e);
// TODO: This should be propagated, but in the current design propagation may occur too
// early. See [Internal b/22291244].
// throw new ExoPlaybackException(e);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment