diff options
author | phintuka <phintuka> | 2012-01-19 13:06:37 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2012-01-19 13:06:37 +0000 |
commit | c6edb746e3888cc35a9ce8ce2860ae869a706f5d (patch) | |
tree | ecc850c62e1b1ecd7e1243d1b52f390f5cb65a0d | |
parent | 1c6df98e5401fa078e8659554499d2644ff142f0 (diff) | |
download | xineliboutput-c6edb746e3888cc35a9ce8ce2860ae869a706f5d.tar.gz xineliboutput-c6edb746e3888cc35a9ce8ce2860ae869a706f5d.tar.bz2 |
Removed write-only variable
-rw-r--r-- | xine_sxfe_frontend.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c index d4405f7a..8d5e9853 100644 --- a/xine_sxfe_frontend.c +++ b/xine_sxfe_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_sxfe_frontend.c,v 1.174 2012-01-19 13:04:32 phintuka Exp $ + * $Id: xine_sxfe_frontend.c,v 1.175 2012-01-19 13:06:37 phintuka Exp $ * */ @@ -1842,7 +1842,6 @@ static void *opengl_draw_frame_thread(void *arg) static int unsigned count = 0; int16_t win_width = -1, win_height = -1; int16_t win_x = -1, win_y = -1; - XRectangle xrect; XDouble video_tex_width, video_tex_height; int first_frame = 1; //struct timeval t; @@ -1878,10 +1877,6 @@ static void *opengl_draw_frame_thread(void *arg) win_y = this->x.ypos; win_width = this->x.width; win_height = this->x.height; - xrect.x = win_x; - xrect.y = win_y; - xrect.width = win_width; - xrect.height = win_height; } LOGVERBOSE("win_x=%d win_y=%d win_width=%d win_height=%d", win_x, win_y, win_width, win_height); // Update the global alpha value of the OSD |