From 773c611884236fe4c4ca233fcc333c08de531687 Mon Sep 17 00:00:00 2001 From: cehoyos Date: Sun, 15 Mar 2009 22:19:05 +0000 Subject: Move initialisation of deint_surfaces[] to free_video_specific(). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28971 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_vdpau.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libvo/vo_vdpau.c b/libvo/vo_vdpau.c index 7acc165a8f..00a2614fdd 100644 --- a/libvo/vo_vdpau.c +++ b/libvo/vo_vdpau.c @@ -447,6 +447,9 @@ static void free_video_specific(void) { decoder = VDP_INVALID_HANDLE; decoder_max_refs = -1; + for (i = 0; i < 3; i++) + deint_surfaces[i] = VDP_INVALID_HANDLE; + for (i = 0; i < MAX_VIDEO_SURFACES; i++) { if (surface_render[i].surface != VDP_INVALID_HANDLE) { vdp_st = vdp_video_surface_destroy(surface_render[i].surface); @@ -474,7 +477,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width, XSetWindowAttributes xswa; XWindowAttributes attribs; unsigned long xswamask; - int depth, i; + int depth; #ifdef CONFIG_XF86VM int vm = flags & VOFLAG_MODESWITCHING; @@ -543,9 +546,6 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width, vid_surface_num = -1; resize(); - for (i = 0; i < 3; i++) - deint_surfaces[i] = VDP_INVALID_HANDLE; - return 0; } -- cgit v1.2.3