diff options
author | Julian Scheel <julian@jusst.de> | 2008-12-30 13:40:20 +0000 |
---|---|---|
committer | Julian Scheel <julian@jusst.de> | 2008-12-30 13:40:20 +0000 |
commit | 2ae69115cf9f38635f4590523b99ffffcbddb950 (patch) | |
tree | 1292ab41d0b675a9262e9ebb4a5b298bd1c0cdf2 | |
parent | e9808b86e7e1b380deb890ca68634a6897f5bba9 (diff) | |
download | xine-lib-2ae69115cf9f38635f4590523b99ffffcbddb950.tar.gz xine-lib-2ae69115cf9f38635f4590523b99ffffcbddb950.tar.bz2 |
Remove some debug printfs.
-rw-r--r-- | src/video_out/video_out_vdpau.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_out/video_out_vdpau.c b/src/video_out/video_out_vdpau.c index 2d5cd3d8a..33dd0f717 100644 --- a/src/video_out/video_out_vdpau.c +++ b/src/video_out/video_out_vdpau.c @@ -298,9 +298,7 @@ static int vdpau_process_argb_ovl( vdpau_driver_t *this_gen, vo_overlay_t *overl uint32_t pitch = this->argb_overlay_width*4; VdpRect dest = { 0, overlay->y, this->argb_overlay_width, overlay->y + overlay->height }; - printf("Update ARGB: %d, %d - %dx%d\n", dest.x0, dest.y0, dest.x1, dest.y1); uint32_t *buffer_start = overlay->argb_buffer + overlay->y*this->argb_overlay_width; - printf("buf offset: %d, %p -> %p\n", overlay->y*this->argb_overlay_width, overlay->argb_buffer, buffer_start); VdpStatus st = vdp_output_surface_put_bits( this->argb_overlay, (void*)&(buffer_start), &pitch, &dest ); if ( st != VDP_STATUS_OK ) { printf( "vdpau_process_argb_ovl: vdp_output_surface_put_bits_native failed : %s\n", vdp_get_error_string(st) ); |