Commit 1482dde4 by Oliver Woodman

Fix verify error running on JellyBean. Add link to Javadoc

parent 27ab5c83
...@@ -19,6 +19,13 @@ get started. ...@@ -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, ...@@ -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;
} }
......
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