Force black picture after start or suspend.

This commit is contained in:
Johns 2012-04-22 21:01:34 +02:00
parent 207871fd9b
commit 47d840bbff
1 changed files with 7 additions and 3 deletions

10
video.c
View File

@ -1772,6 +1772,8 @@ static VaapiDecoder *VaapiNewHwDecoder(void)
decoder->OutputWidth = VideoWindowWidth;
decoder->OutputHeight = VideoWindowHeight;
decoder->Closing = -300 - 1;
decoder->PTS = AV_NOPTS_VALUE;
// get/put still not working
@ -5679,9 +5681,6 @@ static VdpauDecoder *VdpauNewHwDecoder(void)
}
#endif
decoder->OutputWidth = VideoWindowWidth;
decoder->OutputHeight = VideoWindowHeight;
// Procamp operation parameterization data
decoder->Procamp.struct_version = VDP_PROCAMP_VERSION;
decoder->Procamp.brightness = 0.0;
@ -5689,6 +5688,11 @@ static VdpauDecoder *VdpauNewHwDecoder(void)
decoder->Procamp.saturation = 1.0;
decoder->Procamp.hue = 0.0; // default values
decoder->OutputWidth = VideoWindowWidth;
decoder->OutputHeight = VideoWindowHeight;
decoder->Closing = -300 - 1;
decoder->PTS = AV_NOPTS_VALUE;
// FIXME: hack