st/vdpau: clear Cb&Cr with 0.5f
authorChristian König <deathsimple@vodafone.de>
Sat, 9 Jun 2012 13:33:28 +0000 (15:33 +0200)
committerChristian König <deathsimple@vodafone.de>
Wed, 20 Jun 2012 08:13:29 +0000 (10:13 +0200)
That makes the output black in case of decoding errors.

Signed-off-by: Christian König <deathsimple@vodafone.de>
src/gallium/state_trackers/vdpau/surface.c

index fde2336ca11779095d75dc0773514722e878160a..cc866a6ca0d13daaa43d5e69e12b9402492d34d1 100644 (file)
@@ -355,12 +355,15 @@ vlVdpVideoSurfaceClear(vlVdpSurface *vlsurf)
 
    surfaces = vlsurf->video_buffer->get_surfaces(vlsurf->video_buffer);
    for (i = 0; i < VL_MAX_SURFACES; ++i) {
-      union pipe_color_union black = {};
+      union pipe_color_union c = {};
 
       if (!surfaces[i])
          continue;
 
-      pipe->clear_render_target(pipe, surfaces[i], &black, 0, 0,
+      if (i > !!vlsurf->templat.interlaced)
+         c.f[0] = c.f[1] = c.f[2] = c.f[3] = 0.5f;
+
+      pipe->clear_render_target(pipe, surfaces[i], &c, 0, 0,
                                 surfaces[i]->width, surfaces[i]->height);
    }
    pipe->flush(pipe, NULL);