Project

General

Profile

Actions

Bug #2566

open

Bugfix: show black picture during channel switch only when it is configured

Added by Dr._Seltsam over 5 years ago. Updated over 5 years ago.

Status:
New
Priority:
Normal
Assignee:
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 #1

Updated by Dr._Seltsam over 5 years ago

correction of the last sentence:
Otherwise there is always a black picture during channel switch, even if "black during channel switch" is set to off.

Actions

Also available in: Atom PDF