[Mplayer-cvslog] CVS: main/libmpcodecs vd_xanim.c,1.7,1.8

Alex Beregszaszi alex at mplayerhq.hu
Fri Sep 6 18:51:43 CEST 2002


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

Modified Files:
	vd_xanim.c 
Log Message:
removed xacodec_driver, using sh->context instead, removed xacodec_image, using mpi instead, some warning fixes. note: mpi optimisations are still pending

Index: vd_xanim.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_xanim.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vd_xanim.c	5 Sep 2002 16:34:57 -0000	1.7
+++ vd_xanim.c	6 Sep 2002 16:51:16 -0000	1.8
@@ -1,9 +1,13 @@
 /*
-  xacodec.c -- XAnim Video Codec DLL support
+  XAnim Video Codec DLL support
+
+  It partly emulates the Xanim codebase.
+  You need the -rdynamic flag to use this with gcc.
 
   (C) 2001 Alex Beregszaszi <alex at naxine.org>
        and Arpad Gereoffy <arpi at thot.banki.hu>
 */
+
[...975 lines suppressed...]
+	return NULL;
+    }
+
+    if (ret & ACT_DLTA_BAD)
+    {
+	mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "bad\n");
+	return NULL;
+    }
+
+    /* used for double buffer */
+    if (ret & ACT_DLTA_BODY)
+    {
+	mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "body\n");
+	return NULL;
+    }
     
     return mpi;
 }
-
 #endif




More information about the MPlayer-cvslog mailing list