Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6a5cd688
authored
Oct 09, 2015
by
Ian Bird
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Make MediaCodecUtil.getMediaCodecInfo public
parent
5b81612c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
library/src/main/java/com/google/android/exoplayer/MediaCodecUtil.java
library/src/main/java/com/google/android/exoplayer/MediaCodecUtil.java
View file @
6a5cd688
...
@@ -94,8 +94,15 @@ public final class MediaCodecUtil {
...
@@ -94,8 +94,15 @@ public final class MediaCodecUtil {
/**
/**
* Returns the name of the best decoder and its capabilities for the given mimeType.
* Returns the name of the best decoder and its capabilities for the given mimeType.
*
* @param mimeType The mime type.
* @param secure Whether the decoder is required to support secure decryption. Always pass false
* unless secure decryption really is required.
*
* @return The name of the best decoder and its capabilities for the given mimeType, or null if
* no decoder exists.
*/
*/
p
rivate
static
synchronized
Pair
<
String
,
CodecCapabilities
>
getMediaCodecInfo
(
p
ublic
static
synchronized
Pair
<
String
,
CodecCapabilities
>
getMediaCodecInfo
(
String
mimeType
,
boolean
secure
)
throws
DecoderQueryException
{
String
mimeType
,
boolean
secure
)
throws
DecoderQueryException
{
CodecKey
key
=
new
CodecKey
(
mimeType
,
secure
);
CodecKey
key
=
new
CodecKey
(
mimeType
,
secure
);
if
(
codecs
.
containsKey
(
key
))
{
if
(
codecs
.
containsKey
(
key
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment