diff options
Diffstat (limited to 'src/video_out')
-rw-r--r-- | src/video_out/alphablend.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_pgx64.c | 6 |
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"); |