Mercurial > mplayer.hg
changeset 16221:a8063634ebd1
remove/move some unused headers/variables/code
author | reimar |
---|---|
date | Sun, 14 Aug 2005 19:24:49 +0000 |
parents | 1effc23b2cb8 |
children | 8683e4609f3f |
files | libvo/gl_common.c libvo/vo_gl.c libvo/vo_gl2.c |
diffstat | 3 files changed, 8 insertions(+), 23 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/gl_common.c Sun Aug 14 18:36:01 2005 +0000 +++ b/libvo/gl_common.c Sun Aug 14 19:24:49 2005 +0000 @@ -38,8 +38,6 @@ glPixelStorei (GL_UNPACK_ALIGNMENT, gl_alignment); } -#include "img_format.h" - struct gl_name_map_struct { GLint value; char *name;
--- a/libvo/vo_gl.c Sun Aug 14 18:36:01 2005 +0000 +++ b/libvo/vo_gl.c Sun Aug 14 19:24:49 2005 +0000 @@ -1,19 +1,15 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <math.h> -#include <errno.h> +#include "config.h" #include "mp_msg.h" -#include "config.h" #include "subopt-helper.h" #include "video_out.h" #include "video_out_internal.h" #include "font_load.h" #include "sub.h" -#include <errno.h> - #include "gl_common.h" #include "aspect.h" #ifdef HAVE_NEW_GUI @@ -204,8 +200,6 @@ return -1; #else if (WinID >= 0) { - Window win_tmp; - int int_tmp; vo_window = WinID ? (Window)WinID : mRootWin; goto glconfig; } @@ -304,7 +298,6 @@ unsigned char *src, unsigned char *srca, int stride) { - int i; // initialize to 8 to avoid special-casing on alignment int sx = 8, sy = 8; GLint scale_type = (scaled_osd) ? GL_LINEAR : GL_NEAREST; @@ -327,6 +320,7 @@ BindTexture(gl_target, osdatex[osdtexCnt]); glCreateClearTex(gl_target, GL_ALPHA, scale_type, sx, sy, 0); { + int i; char *tmp = (char *)malloc(stride * h); for (i = 0; i < h * stride; i++) tmp[i] = ~(-srca[i]); @@ -358,10 +352,10 @@ static void draw_osd(void) { - int i; - int osd_h, osd_w; if (!use_osd) return; if (vo_osd_changed(0)) { + int i; + int osd_h, osd_w; for (i = 0; i < osdtexCnt; i++) { glDeleteTextures(1, &osdtex[i]); #ifndef FAST_OSD
--- a/libvo/vo_gl2.c Sun Aug 14 18:36:01 2005 +0000 +++ b/libvo/vo_gl2.c Sun Aug 14 19:24:49 2005 +0000 @@ -7,8 +7,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <math.h> -#include <errno.h> #include "config.h" #include "mp_msg.h" @@ -20,8 +18,6 @@ #include "Gui/interface.h" #endif -#include <errno.h> - #include "gl_common.h" #include "aspect.h" @@ -46,11 +42,6 @@ /* local data */ static unsigned char *ImageData=NULL; -/* X11 related variables */ -//static Window vo_window; - -//static int texture_id=1; - #ifdef GL_WIN32 static int gl_vinfo = 0; static HGLRC gl_context = 0; @@ -150,7 +141,7 @@ { struct TexSquare *tsq=0; GLfloat texpercx, texpercy; - int s, i=0; + int s; int x=0, y=0; GLint format=0; GLenum err; @@ -467,12 +458,14 @@ mp_msg (MSGT_VO, MSGL_V, "GLERROR glBindTexture := GL_INVALID_OPERATION, texnum x=%d, y=%d, texture=%d\n", x, y, square->texobj); } +#ifndef NDEBUG if(glIsTexture(square->texobj) == GL_FALSE) { square->isTexture=GL_FALSE; mp_msg (MSGT_VO, MSGL_ERR, "GLERROR ain't a texture(update): texnum x=%d, y=%d, texture=%d\n", x, y, square->texobj); } +#endif if(square->isDirty) { @@ -970,7 +963,7 @@ if(arg) { mp_msg(MSGT_VO, MSGL_FATAL, "[gl2] Unknown subdevice: %s\n",arg); - return ENOSYS; + return -1; } if( !vo_init() ) return -1; // Can't open X11 return 0;