mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
Handle non-standard MIME type on LG AC3 decoder
PiperOrigin-RevId: 437057336
This commit is contained in:
parent
f41ebf6c65
commit
edfa03d969
1 changed files with 2 additions and 0 deletions
|
|
@ -441,6 +441,8 @@ public final class MediaCodecUtil {
|
|||
return "audio/x-lg-alac";
|
||||
} else if (mimeType.equals(MimeTypes.AUDIO_FLAC) && "OMX.lge.flac.decoder".equals(name)) {
|
||||
return "audio/x-lg-flac";
|
||||
} else if (mimeType.equals(MimeTypes.AUDIO_AC3) && "OMX.lge.ac3.decoder".equals(name)) {
|
||||
return "audio/lg-ac3";
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue