[Mplayer-cvslog] CVS: main/libmpcodecs vd_ffmpeg.c,1.82,1.83

Arpi of Ize arpi at mplayerhq.hu
Tue Feb 11 21:22:16 CET 2003


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv22829

Modified Files:
	vd_ffmpeg.c 
Log Message:
10l to kabi (compile fix, uint8->uint8_t)


Index: vd_ffmpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_ffmpeg.c,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- vd_ffmpeg.c	11 Jan 2003 05:06:48 -0000	1.82
+++ vd_ffmpeg.c	11 Feb 2003 20:21:52 -0000	1.83
@@ -297,13 +297,13 @@
 }
 
 static void draw_slice(struct AVCodecContext *s,
-                	UINT8 **src, int linesize,
+                	uint8_t **src, int linesize,
                 	int y, int width, int height){
     sh_video_t * sh = s->opaque;
     int stride[3];
     int start=0, i;
     int skip_stride= (s->width+15)>>4;
-    UINT8 *skip= &s->coded_frame->mbskip_table[(y>>4)*skip_stride];
+    uint8_t *skip= &s->coded_frame->mbskip_table[(y>>4)*skip_stride];
     int threshold= s->coded_frame->age;
 
     stride[0]=linesize;
@@ -318,7 +318,7 @@
             if(i*16>=width || skip[i]>=threshold){
                 if(start==i) start++;
                 else{
-                    UINT8 *src2[3]= {src[0] + start*16, 
+                    uint8_t *src2[3]= {src[0] + start*16, 
                                      src[1] + start*8, 
                                      src[2] + start*8};
 //printf("%2d-%2d x %d\n", start, i, y);



More information about the MPlayer-cvslog mailing list