Tunnel Mode Playback
The hardware decoder for some Fire TV devices support playback of 4K @ 60 FPS. To play a video at such high resolution and frame rate, the timing requirement of media pipeline is very aggressive and the app may not be able to render 4K frames at 16 msec interval due to thread and process scheduling limitations of the kernel. This may cause frame drops and a sub-par movie experience. To get the best out of the hardware, use Tunnel Mode playback.
- How to Enable Tunnel Mode Playback
- More Details about Tunnel Mode Playback
- Limitations of Tunneled Mode
How to Enable Tunnel Mode Playback
The main changes required to enable Tunnel Mode playback are as follows:
-
Query the AudioTrack session ID from AudioManager:
AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); int audioSessionId = audioManager.generateAudioSessionId();
-
Configure Video Decoder for Tunnel mode:
format.setFeatureEnabled(MediaCodecInfo.CodecCapabilities.FEATURE_TunneledPlayback, true);
-
Configure Video decoder with the AudioTrack session ID.
format.setInteger(android.media.MediaFormat.KEY_AUDIO_SESSION_ID, audioSessionId);
-
Create AudioTrack with the above queried session ID and set the AudioAttributes flag
FLAG_HW_AV_SYNC
.AudioAttributes attributes = new AudioAttributes.Builder() .setLegacyStreamType(AudioManager.STREAM_MUSIC) .setFlags(AudioAttributes.FLAG_HW_AV_SYNC) .build(); AudioFormat format = new AudioFormat.Builder() .setEncoding(targetEncoding) .setSampleRate(sampleRate) .setChannelMask(channelConfig) .build(); int mode = AudioTrack.MODE_STREAM; AudioTrack audioTrack = new AudioTrack(attributes, format, bufferSize, mode, audioSessionId);
-
Do not call
dequeueOutputBuffer
andreleaseOutputBuffer
for video decoder. -
AudioTrack provides a write API that will automatically construct the additional header information. For details see here.
Note: The additional parameter is the timestamp that corresponds with the data being written.
More Details about Tunnel Mode Playback
For more details refer to the Tunnel Mode Playback implementation in Exoplayer 2:
- Enable tunneling end-to-end
- Support tunneling in video renderer
- Report tunneling support via RendererCapabilities API
- Plumbing to enable tunneling on AudioTrack from renderers
Limitations of Tunneled Mode
The information about Tunneled Mode playback in this document applies to all Fire TV devices running on Fire OS 6 or later with the following constraints:
-
All Fire TV Streaming Media Players running Fire OS 6 or later support tunneled mode for VP9 and HEVC decoders with the following limitations:
- For Fire TV Cube 2nd Gen (2019): Tunneled mode is only supported by the secure decoders, but applications can still use a secure decoder pipeline for clear content if they wish to play clear content in tunneled mode. See secure decoder requirements.
-
All Fire TVs support tunnel mode for popular video codecs such as h264, h265, and VP9 for both secure and non-secure playback with the following limitations:
- Insignia HD - Fire TV (2018), Toshiba HD - Fire TV (2018) and Toshiba 4K - Fire TV (2018) do not support mono or multi channel PCM.
Last updated: Aug 23, 2021