[Mplayer-cvslog] CVS: main/libmpcodecs vf_scale.h,NONE,1.1 vf_scale.c,1.42,1.43 vf_sab.c,1.4,1.5 vf_smartblur.c,1.5,1.6

Michael Niedermayer CVS michael at mplayerhq.hu
Mon Jun 2 00:00:00 CEST 2003


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

Modified Files:
	vf_scale.c vf_sab.c vf_smartblur.c 
Added Files:
	vf_scale.h 
Log Message:
vf_scale.h & related cleanup & some small warning fix by dominik


--- NEW FILE ---
//GPL

int get_sws_cpuflags();
struct SwsContext *sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat);

Index: vf_scale.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_scale.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- vf_scale.c	20 May 2003 17:42:33 -0000	1.42
+++ vf_scale.c	1 Jun 2003 21:59:27 -0000	1.43
@@ -13,6 +13,7 @@
 
 #include "../libvo/fastmemcpy.h"
 #include "../postproc/swscale.h"
+#include "vf_scale.h"
 
 #include "m_option.h"
 #include "m_struct.h"
@@ -30,7 +31,6 @@
   0,
   0,
   NULL,
-  NULL,
   NULL
 };
 
@@ -40,7 +40,6 @@
 //===========================================================================//
 
 void sws_getFlagsAndFilterFromCmdLine(int *flags, SwsFilter **srcFilterParam, SwsFilter **dstFilterParam);
-struct SwsContext *sws_getContextFromCmdLine(int srcW, int srcH, int srcFormat, int dstW, int dstH, int dstFormat);
 
 static unsigned int outfmt_list[]={
 // RGB:
@@ -319,6 +318,7 @@
 
 	return CONTROL_TRUE;
     default:
+	break;
     }
     
     return vf_next_control(vf,request,data);

Index: vf_sab.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_sab.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vf_sab.c	24 Apr 2003 17:03:50 -0000	1.4
+++ vf_sab.c	1 Jun 2003 21:59:27 -0000	1.5
@@ -34,6 +34,7 @@
 #include "vf.h"
 #include "../libvo/fastmemcpy.h"
 #include "../postproc/swscale.h"
+#include "vf_scale.h"
 
 
 //===========================================================================//

Index: vf_smartblur.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_smartblur.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vf_smartblur.c	24 Apr 2003 17:03:50 -0000	1.5
+++ vf_smartblur.c	1 Jun 2003 21:59:27 -0000	1.6
@@ -38,6 +38,7 @@
 #include "vf.h"
 #include "../libvo/fastmemcpy.h"
 #include "../postproc/swscale.h"
+#include "vf_scale.h"
 
 //===========================================================================//
 



More information about the MPlayer-cvslog mailing list