mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
st/vdpau: invert interlaced buffer checks
That wasn't working as supposed. Signed-off-by: Christian König <deathsimple@vodafone.de>
This commit is contained in:
parent
7b6424143d
commit
9f777699ed
1 changed files with 1 additions and 1 deletions
|
|
@ -464,7 +464,7 @@ vlVdpDecoderRender(VdpDecoder decoder,
|
|||
|
||||
if (vlsurf->video_buffer == NULL ||
|
||||
!screen->is_video_format_supported(screen, vlsurf->video_buffer->buffer_format, dec->profile) ||
|
||||
buffer_support[vlsurf->video_buffer->interlaced]) {
|
||||
!buffer_support[vlsurf->video_buffer->interlaced]) {
|
||||
|
||||
/* destroy the old one */
|
||||
if (vlsurf->video_buffer)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue