summaryrefslogtreecommitdiff
path: root/src/video_out
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2002-12-22 00:35:04 +0000
committerRobin KAY <komadori@users.sourceforge.net>2002-12-22 00:35:04 +0000
commit614e17928e8f7b1bdc632fd934499cbfea165d8a (patch)
tree26887fbf9f785a69ec603c703ecda4650bbec829 /src/video_out
parent1b71075127f7fdfad0c16cc8535cd2c2b4e01c3b (diff)
downloadxine-lib-614e17928e8f7b1bdc632fd934499cbfea165d8a.tar.gz
xine-lib-614e17928e8f7b1bdc632fd934499cbfea165d8a.tar.bz2
Make xine-lib compile with the SunPro compiler
CVS patchset: 3623 CVS date: 2002/12/22 00:35:04
Diffstat (limited to 'src/video_out')
-rw-r--r--src/video_out/alphablend.c4
-rw-r--r--src/video_out/video_out_pgx64.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/video_out/alphablend.c b/src/video_out/alphablend.c
index b0ef47813..9275db9f8 100644
--- a/src/video_out/alphablend.c
+++ b/src/video_out/alphablend.c
@@ -1,5 +1,5 @@
-//TOAST_SPU will define ALL spu entries - no matter the tranparency
-//#define TOAST_SPU
+/*TOAST_SPU will define ALL spu entries - no matter the tranparency*/
+/*#define TOAST_SPU*/
/* #define PRIV_CLUT */
/* Currently only blend_yuv(..) works */
/*
diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c
index 9dc0e754b..44bc0029c 100644
--- a/src/video_out/video_out_pgx64.c
+++ b/src/video_out/video_out_pgx64.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_pgx64.c,v 1.22 2002/12/21 12:56:49 miguelfreitas Exp $
+ * $Id: video_out_pgx64.c,v 1.23 2002/12/22 00:35:05 komadori Exp $
*
* video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine
*
@@ -131,7 +131,7 @@ typedef struct {
GC gc;
int fbfd;
- void *fbbase;
+ uint8_t *fbbase;
volatile uint32_t *fbregs;
uint32_t top, fb_width, fb_height;
@@ -669,7 +669,7 @@ static pgx64_driver_t* init_driver(pgx64_driver_class_t *class)
pgx64_driver_t *this;
char *devname;
int fbfd;
- void *baseaddr;
+ uint8_t *baseaddr;
struct fbgattr attr;
printf("video_out_pgx64: PGX64 video output plugin - By Robin Kay\n");