Expand Minimize Picture-in-picture Power Device Status Voice Recognition Skip Back Skip Forward Minus Plus Play Search
Internet Explorer alert
This browser is not recommended for use with smartdevicelink.com, and may not function properly. Upgrade to a different browser to guarantee support of all features.
close alert
To Top Created with Sketch. To Top
To Bottom Created with Sketch. To Bottom
Android Documentation
AudioDecoderListener

Interface AudioDecoderListener

Package
com.smartdevicelink.managers.audio

Overview

An interface for the audio decoder classes. The caller using the audio decoder will be notified when the decoding is finished or if an error occurred. During decoding the caller receives sample buffers with decoded audio data.

Methods

onAudioDataAvailable( SampleBuffer sampleBuffer )

Notifies that decoded audio data is available.

public void onAudioDataAvailable(SampleBuffer sampleBuffer)

Method Parameters

sampleBuffer
The sample buffer holding the decoded audio data.

onDecoderFinish( boolean success )

Notifies that the audio decoding is finished.

public void onDecoderFinish(boolean success)

Method Parameters

success
Indicates whether audio decoding was successful or if an error occurred.

onDecoderError( Exception e )

Notifies the caller that an error/exception occurred during audio decoding.

public void onDecoderError(Exception e)

Method Parameters

e
The exception storing information about the error.
View on GitHub.com
Previous Section Next Section