mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix verify error running on JellyBean. Add link to Javadoc
This commit is contained in:
parent
27ab5c83a6
commit
1482dde4a9
2 changed files with 8 additions and 1 deletions
|
|
@ -19,6 +19,13 @@ get started.
|
||||||
[ExoPlayer developer guide]: http://developer.android.com/guide/topics/media/exoplayer.html
|
[ExoPlayer developer guide]: http://developer.android.com/guide/topics/media/exoplayer.html
|
||||||
|
|
||||||
|
|
||||||
|
## Reference documentation ##
|
||||||
|
|
||||||
|
[Class reference][] (Documents the ExoPlayer library classes).
|
||||||
|
|
||||||
|
[Class reference]: http://google.github.io/ExoPlayer/doc/reference/com/google/android/exoplayer/package-summary.html
|
||||||
|
|
||||||
|
|
||||||
## Using Eclipse ##
|
## Using Eclipse ##
|
||||||
|
|
||||||
The repository includes Eclipse projects for both the ExoPlayer library and its
|
The repository includes Eclipse projects for both the ExoPlayer library and its
|
||||||
|
|
|
||||||
|
|
@ -153,7 +153,7 @@ public class DashVodRendererBuilder implements RendererBuilder,
|
||||||
// HD streams require L1 security.
|
// HD streams require L1 security.
|
||||||
videoRepresentations = getSdRepresentations(videoRepresentations);
|
videoRepresentations = getSdRepresentations(videoRepresentations);
|
||||||
}
|
}
|
||||||
} catch (UnsupportedSchemeException e) {
|
} catch (Exception e) {
|
||||||
callback.onRenderersError(e);
|
callback.onRenderersError(e);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue