There are currently many Android boxes on the market advertising 4K display support. But how good is this support in reality?

Quick recap about resolutions

In this article, I am using several abbreviation for various screen resolutions:

  • 4K – usually resolution 3840 × 2160 pixels is used, also known as 2160p. Used on the most of new TVs. Requires at least HDMI 1.3 for 30 Hz or HDMI 2.0 for 60 Hz, meaning output device (Android box), cable and input device (TV) must support this version of HDMI.
  • Full HD – 1920 × 1080 pixels, also know as 1080p. Practically commercial minimum today.
  • HD – 1280 × 720 pixels, also know as 720p. Older standard, currently almost out-of-use.
Comparison of sizes of various resolution: 4k, Full HD and HD

Introduction – what is a framebuffer?

Framebuffer or screen buffer is a portion of internal memory containing all pixels that should be displayed on the screen, in form of a bitmap.

Operating system or application writes all the graphic on the user interface to the framebuffer. Afterwards it calls framebuffer flush, which causes the graphic card to actually display the content of the framebuffer on your screen. Operating system or application then continues preparing next frame in the framebuffer.

Framebuffer size on Android boxes

So back to the original question – how does the 4K support look like on an average 2019-2020’s Android box?

  • HDMI 2.0 support for 4K 60 Hz output – mostly yes
  • Support for hardware accelerated decoding of 4K videos – yes
  • 4K internal framebuffer – mostly no, size is fixed to Full HD

The problem with 4K support of Android boxes is that most of them supports it only for playing videos, the rest of the content is displayed in Full HD. This is because no matter what the actual resolution of the screen is, the internal framebuffer is fixed to Full HD resolution. Your monitor or TV can report that the picture resolution is 4K and while technically correct, it is only resolution of the HDMI signal.

The reason for keeping the framebuffer at Full HD resolution is performance. As 4K has four times as many pixels as Full HD, most of the graphic cards used in the current Android boxes would have hard time keeping up and the user interface would be too laggy. So the manufacturers decided to keep the framebuffer resolution at Full HD and take advantage only of the graphic card’s 4K video decoding capability.

Because of the fixed framebuffer size, Slideshow app will always report the screen resolution as 1920 × 1080 px (on About device page or while editing a screen layout) and will render all images, text, HTML pages, etc. with this resolution. Only videos which are going through hardware accelerated decoding are displayed in 4K (if the box supports it), because the hardware acceleration on graphic card usually goes around the internal framebuffer.

There is an equivalent situation with some old devices (for example Geniatech ATV510B), which supports Full HD with video decoding and on HDMI output, but it’s internal framebuffer has fixed resolution of 1280 × 720 px.

On RK3288 box, you can choose between various HDMI output resolutions, but no matter what you choose, framebuffer resolution stays at 1920 × 1080 px

Framebuffer size on Android-x86

While testing Android-x86 on Intel Compute Stick, I found out that it has variable framebuffer size, unlike most Android boxes with ARM processors. While booting, Android will choose the size depending on the connected display’s resolution, up to 4K (on Intel Compute Stick). It can’t be changed after booting up directly in Android, but it shouldn’t be a deal-breaker for most usages (how often do you switch displays on your digital signage without rebooting the device?).

This means that nowadays, using Android-x86 on a box with Intel or AMD processor is one of the few ways to have digital signage in true 4K using Android.

Slideshow on Android-x86 reporting framebuffer’s resolution of 3440 × 1440 px while connected to a monitor with the same native resolution

Conclusion

The main point of this article is to warn potential buyers of various Android boxes, that choosing any Android box claiming to have 4K support may not be the best idea for digital signage. Always do a research before choosing the right hardware.

If you know any good Android box with 4K framebuffer, let me know. I will be happy to add it here.