[Mplayer-cvslog] CVS: main xacodec.c,1.4,1.5

Arpi of Ize arpi at mplayer.dev.hu
Mon Oct 22 22:48:55 CEST 2001


Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv15365

Modified Files:
	xacodec.c 
Log Message:
cvid works but buggy

Index: xacodec.c
===================================================================
RCS file: /cvsroot/mplayer/main/xacodec.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xacodec.c	22 Oct 2001 18:52:10 -0000	1.4
+++ xacodec.c	22 Oct 2001 20:48:39 -0000	1.5
@@ -28,6 +28,18 @@
 #include "libvo/img_format.h"
 #include "xacodec.h"
 
+typedef char xaBYTE;
+typedef short xaSHORT;
+typedef int xaLONG;
+
+typedef unsigned char xaUBYTE;
+typedef unsigned short xaUSHORT;
+typedef unsigned int xaULONG;
+
+#define xaFALSE 0
+#define xaTRUE 1
+
+
 #ifndef RTLD_NOW
 #define RLTD_NOW 2
 #endif
@@ -427,33 +439,53 @@
     unsigned int imagex, XA_2x2_Color *cmap2x2)
 {
     unsigned int row_inc = imagex - 3;
-    unsigned char *ip = (unsigned char *)(image + y * imagex + x);
+    unsigned char *ip = (unsigned char *)(image + 4*(y * imagex + x));
 
-    XA_Print("XA_2x2_OUT_1BLK_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cmap2x2: %08x')",
-	image, x, y, imagex, cmap2x2);
-    ip_OUT_2x2_1BLK(ip, unsigned char, cmap2x2, row_inc);
+//    XA_Print("XA_2x2_OUT_1BLK_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cmap2x2: %08x')",
+//	image, x, y, imagex, cmap2x2);
+    //ip_OUT_2x2_1BLK(ip, unsigned char, cmap2x2, row_inc);
+    
+    // simplified yv12->rgb32bpp converter (Y only)
+    ip[0]=ip[1]=ip[2]=cmap2x2->clr0_0;
+    ip[4]=ip[5]=ip[6]=cmap2x2->clr1_0;
+    ip+=4*imagex;
+    ip[0]=ip[1]=ip[2]=cmap2x2->clr2_0;
+    ip[4]=ip[5]=ip[6]=cmap2x2->clr3_0;
+    
 }
 
 void XA_2x2_OUT_4BLKS_clr8(unsigned char *image, unsigned int x, unsigned int y,
     unsigned int imagex, XA_2x2_Color *cm0, XA_2x2_Color *cm1, XA_2x2_Color *cm2,
     XA_2x2_Color *cm3)
 {
+/*
     unsigned int row_inc = imagex - 3;
     unsigned char *ip = (unsigned char *)(image + y * imagex + x);
 
-    XA_Print("XA_2x2_OUT_1BLK_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cm0: %08x', 'cm1: %08x', 'cm2: %08x', 'cm3: %08x')",
+    XA_Print("XA_2x2_OUT_4BLKS_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cm0: %08x', 'cm1: %08x', 'cm2: %08x', 'cm3: %08x')",
 	image, x, y, imagex, cm0, cm1, cm2, cm3);
     ip_OUT_2x2_2BLKS(ip, unsigned char, cm0, cm1, row_inc);
     ip += row_inc;
     ip_OUT_2x2_2BLKS(ip, unsigned char, cm2, cm3, row_inc);
+*/
+
+XA_2x2_OUT_1BLK_clr8(image,x,y,imagex,cm0);
+XA_2x2_OUT_1BLK_clr8(image,x+2,y,imagex,cm1);
+XA_2x2_OUT_1BLK_clr8(image,x,y+2,imagex,cm2);
+XA_2x2_OUT_1BLK_clr8(image,x+2,y+2,imagex,cm3);
+
+}
+
+void dummy(){
+    XA_Print("dummy() called");
 }
 
 void *YUV2x2_Blk_Func(unsigned int image_type, int blks, unsigned int dith_flag)
 {
     void (*color_func)();
 
-    XA_Print("YUV2x2_Blk_Func('image_type: %d', 'blks: %d', 'dith_flag: %d')",
-	    image_type, blks, dith_flag);
+//    XA_Print("YUV2x2_Blk_Func('image_type: %d', 'blks: %d', 'dith_flag: %d')",
+//	    image_type, blks, dith_flag);
 
     if (blks == 1)
     {
@@ -464,7 +496,7 @@
 		break;
 	}
     }
-    else /* blks == 4 */
+    else if(blks == 4)
     {
 	switch(image_type)
 	{
@@ -473,21 +505,67 @@
 		break;
 	}
     }
+    else printf("Ajajj!\n");
 
-    XA_Print("YUV2x2_Blk_Func -> %08x", color_func);
+//    XA_Print("YUV2x2_Blk_Func -> %08x", color_func);
 
     return((void *)color_func);
 }
 
-void dummy(){
-    XA_Print("dummy() called");
+
+/*****************************************************************************
+ * Take Four Y's and UV and put them into a 2x2 Color structure.
+ * Convert to display clr.
+ ******************/
+
+void XA_YUV_2x2_clr(cmap2x2,Y0,Y1,Y2,Y3,U,V,map_flag,map,chdr)
+XA_2x2_Color *cmap2x2;
+xaULONG Y0,Y1,Y2,Y3,U,V;
+xaULONG map_flag,*map;
+XA_CHDR *chdr;
+{ xaLONG cr,cg,cb; xaULONG r,g,b;
+
+//  printf("XA_YUV_2x2_clr(%p [%d,%d,%d,%d][%d][%d] %d %p %p)\n",
+//          cmap2x2,Y0,Y1,Y2,Y3,U,V,map_flag,map,chdr);
+
+  cmap2x2->clr0_0=Y0;
+  cmap2x2->clr1_0=Y1;
+  cmap2x2->clr2_0=Y2;
+  cmap2x2->clr3_0=Y3;
+  cmap2x2->clr0_1=U;
+  cmap2x2->clr0_2=V;
+
+//  cmap2x2->clr0_0 = 0x1111;
+//  cmap2x2->clr1_0 = 0x3535;
+//  cmap2x2->clr2_0 = 0x7272;
+//  cmap2x2->clr3_0 = 0xbfbf;
+
+/*
+  xaUBYTE *rl = xa_byte_limit;
+
+  cr = YUV2_VR_tab[V];
+  cb = YUV2_UB_tab[U];
+  cg = YUV2_UG_tab[U] + YUV2_VG_tab[V];
+
+  YUV_TO_RGB(Y0,cr,cg,cb,rl,r,g,b);
+  cmap2x2->clr0_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
+  YUV_TO_RGB(Y1,cr,cg,cb,rl,r,g,b);
+  cmap2x2->clr1_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
+  YUV_TO_RGB(Y2,cr,cg,cb,rl,r,g,b);
+  cmap2x2->clr2_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
+  YUV_TO_RGB(Y3,cr,cg,cb,rl,r,g,b);
+  cmap2x2->clr3_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
+*/
 }
 
+
+
 void *YUV2x2_Map_Func(unsigned int image_type, unsigned int dith_type)
 {
-    XA_Print("YUV2x2_Map_Func('image_type: %d', 'dith_type: %d')",
-	    image_type, dith_type);
-    return (void*)dummy;
+//    XA_Print("YUV2x2_Map_Func('image_type: %d', 'dith_type: %d')",
+//	    image_type, dith_type);
+    if(image_type!=0)printf("izeeeeee!\n");
+    return (void*)XA_YUV_2x2_clr;
 }
 
 int XA_Add_Func_To_Free_Chain(XA_ANIM_HDR *anim_hdr, void (*function)())
@@ -509,6 +587,7 @@
 void JPG_Setup_Samp_Limit_Table(XA_ANIM_HDR *anim_hdr)
 {
     XA_Print("JPG_Setup_Samp_Limit_Table('anim_hdr: %08x')", anim_hdr);
+//    xa_byte_limit = jpg_samp_limit + (MAXJSAMPLE + 1);
 }
 
 void JPG_Alloc_MCU_Bufs(XA_ANIM_HDR *anim_hdr, unsigned int width,




More information about the MPlayer-cvslog mailing list