media: ignore null InputStream

Bug: 22854896
Change-Id: I20b9e28bbba6dec73538ee6937d337c2e2b971f4
This commit is contained in:
Ronghua Wu
2015-08-11 13:33:49 -07:00
parent c1c462cbaa
commit c024de3c94

View File

@ -2243,10 +2243,14 @@ public class MediaPlayer implements SubtitleController.Listener
final InputStream fIs = is;
final MediaFormat fFormat = format;
// Ensure all input streams are closed. It is also a handy
// way to implement timeouts in the future.
synchronized(mOpenSubtitleSources) {
mOpenSubtitleSources.add(is);
if (is != null) {
// Ensure all input streams are closed. It is also a handy
// way to implement timeouts in the future.
synchronized(mOpenSubtitleSources) {
mOpenSubtitleSources.add(is);
}
} else {
Log.w(TAG, "addSubtitleSource called with null InputStream");
}
// process each subtitle in its own thread