getAudioRendering

public boolean getAudioRendering()

Checks if audio rendering is currently enabled.

This allows apps to query whether audio is actively being rendered or suppressed.

Example usage:

boolean isAudioEnabled = player.getAudioRendering();
Log.d("Client", "Audio rendering status: " + isAudioEnabled);

Return

true if audio rendering is active, false if it’s suppressed.