Actions
Bug #2566
openBugfix: show black picture during channel switch only when it is configured
Start date:
10/03/2018
Due date:
% Done:
0%
Estimated time:
0:15 h
Description
There is a small bug in video.c in static void VdpauDisplayFrame(void) around line 8684 (git-version):
if ((VideoShowBlackPicture && !decoder->TrickSpeed)
|| decoder->Closing < -300) {
VdpauBlackSurface(decoder);
it has to be
if ((VideoShowBlackPicture && !decoder->TrickSpeed)
|| (VideoShowBlackPicture && decoder->Closing < -300)) {
VdpauBlackSurface(decoder);
Otherwise there is always a black picture during channel switch, when 'Clear on switch' is configured to 'on'.
Actions