Kodi seems to have the same issues when playing as HDR. In any case, the issue is already closed because it's an issue in the device surface implementation.
I can confirm, that this still happening with the 3.3.1 build of VLC on a Sony Bravia X90G. Latest updates are applied to the TV (there were 2 updates for the past 9 months).
Maybe transparent is not a good way to go due to overdraw and performance.
But could that be just a colorspace mismatch for the background color of the player?
I mean, the black of the video is black on the screen, but the surrounding background of the player color is grey in the resulting composition.
Other players were simply using Color.BLACK to fill the background (I couldn't find the VLC code for that in the hurry). And avoided the situation by using transparent color. But there are several ColorSpaces in Android(not to mention OpenGL/Vulkan), some more exotic then simple [0..255]/[0..1] range, i.e. look here:
Ranges are negative, like [-65504.0, 66504.0] for 16bit color space, but also they are mentioning [-2,2] and [-0.7999 .. 2.399] as well. The conversion from Color.BLACK is failing somewhere in the process.
The hypothesis would be that it can be fixed in the code: either the surface provided by the system is in a different colorspace (like 16 bit RGB), or we would create a surface of wider ColorSpace / bit range just for HDR video. Then we would do the necessary painting with ColorSpace.getMinValue to get the actual BLACK representation.
So my approach would be:
a.) either the compisition of the surface is incorrect, i.e. bravia/android takes e.g. a RGB 8 bit surface and composites it incorrectly into a wider gamut/higher bit range surface - in that case we could change the surface color space to wider one, that will be composited correctly (as the HDR video is)
b.) the composition is OK, but the surface is a wider gamut/higher bit range surface to start with and the fill color is computed incorrectly from the named color, i.e. [#000000FF results to <0,0,0> not <-65504, -65504,-65504>]
If you could give it another thought, beyond my above obvious, that would be tremendously appreciated.
So this is definitely a bug in the compositing in Android, as the fullscreen content is composited by Android, and only the video area is done by the GL surface of VLC. Why not make this GL surface fullscreen? Just make sure that VLC renders it in the correct aspect ratio on this GL surface. This way, the letterbox is taken care of by VLC instead of Android.
So if the composite is done fullscreen by VLC (instead of Android, like I propose), I believe the clear color indeed will need to be fixed to solid black to avoid weird undefined behaviour and be completly sure it behaves correctly on all devices.