[xiph-commits] r11088 - experimental/giles/mng
giles at svn.xiph.org
giles at svn.xiph.org
Sun Apr 2 14:59:30 PDT 2006
Author: giles
Date: 2006-04-02 14:59:29 -0700 (Sun, 02 Apr 2006)
New Revision: 11088
Modified:
experimental/giles/mng/mngplay.c
Log:
More file header cleanup. Include just <SDL.h> instead of <SDL/SDL.h> as
sdl-config wants us to.
Modified: experimental/giles/mng/mngplay.c
===================================================================
--- experimental/giles/mng/mngplay.c 2006-04-02 21:03:54 UTC (rev 11087)
+++ experimental/giles/mng/mngplay.c 2006-04-02 21:59:29 UTC (rev 11088)
@@ -1,10 +1,8 @@
/*
mngplay
- $Date: 2003/12/07 09:45:16 $
+ Copyright (C) 2001-2006 Ralph Giles <giles at xiph.org>
- Ralph Giles <giles at xiph.org>
-
This program my be redistributed under the terms of the
GNU General Public Licence, version 2, or at your preference,
any later version.
@@ -12,6 +10,7 @@
this is an SDL based mng player. the code is very rough;
patches welcome.
+ $Id: 2003/12/07 09:45:16 $
GRR 20010708: added SDL/libmng/zlib/libjpeg version info, mouse-click
handling (alternate quit mode); improved automake setup
@@ -24,7 +23,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <SDL/SDL.h>
+#include <SDL.h>
#include <libmng.h>
#include <libgen.h> // basename
@@ -38,7 +37,7 @@
char *filename; /* pointer to the file's path/name */
SDL_Surface *surface; /* SDL display */
mng_uint32 delay; /* ticks to wait before resuming decode */
- int sdl_video_depth; /* The depth for SDL_SetVideoMode */
+ int sdl_video_depth; /* The depth for SDL_SetVideoMode */
} mngstuff;
/* callbacks for the mng decoder */
More information about the commits
mailing list