Skip to content

Instantly share code, notes, and snippets.

@seanghay
Created December 11, 2019 15:14
Show Gist options
  • Select an option

  • Save seanghay/e4418c242ae4534a164e253bc20a6c8b to your computer and use it in GitHub Desktop.

Select an option

Save seanghay/e4418c242ae4534a164e253bc20a6c8b to your computer and use it in GitHub Desktop.
MediaCodec
class AudioDecoder {
private val decoder: MediaCodec
private val mimeType = "audio/mpeg" // Mp3 MimeType
init {
decoder = MediaCodec.createDecoderByType(mimeType)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment