StageVideo is disabled but the Video object in FP 11.4 is dispatching a 'renderState' typed event as per...
StageVideoEvent.RENDER_STATE and VideoEvent.RENDER_STATE
The render state is showing as 'accelerated', meaning...
"Presentation in software, decoding in hardware. (Acceptable performance on a modern desktop system only. Degraded full-screen performance.)"
This is corrupting the get info():VideoSurfaceInfo return values when NetStreamBufferTrait calls get bufferNotSupported().
When called the NetStreamBufferTrait
if (bufferNotSupported)
{
setBuffering(false);
}
is always true. It shouldn't be...
Video is actually buffering - this has a knock on effect of focring dual buffering to switch up too early and preventing display of buffer animation
This kills the buffer display when seeking even though all buffering logic is working correctly.
More info: http://help.adobe.com/en_US/as3/dev/WSe9ecd9e6b89aefd2-68d5ef8f12cc851 1f6c-7ffe.html