[Mplayer-cvslog] CVS: main spudec.h,1.7,1.8

Kim Minh Kaplan CVS kmkaplan at mplayer.dev.hu
Thu Jan 10 18:17:07 CET 2002


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

Modified Files:
	spudec.h 
Log Message:
Add spudec_new_scaled and spudec_draw_scaled for vobsub support.

Change what is passed to spudec_new for vobsub support.

Suppress conditional on USE_DVDREAD.

Transform everything that should into unsigned.


Index: spudec.h
===================================================================
RCS file: /cvsroot/mplayer/main/spudec.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- spudec.h	25 Dec 2001 20:32:02 -0000	1.7
+++ spudec.h	10 Jan 2002 17:17:05 -0000	1.8
@@ -1,16 +1,14 @@
-#include "config.h"
-#ifdef USE_DVDREAD
 #ifndef _MPLAYER_SPUDEC_H
 #define _MPLAYER_SPUDEC_H
 
-#include "stream.h"
-void spudec_heartbeat(void *this, int pts100);
-void spudec_assemble(void *this, unsigned char *packet, int len, int pts100);
+void spudec_heartbeat(void *this, unsigned int pts100);
+void spudec_assemble(void *this, unsigned char *packet, unsigned int len, unsigned int pts100);
 void spudec_draw(void *this, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
-void *spudec_new(dvd_priv_t *dvd_info);
+void spudec_draw_scaled(void *this, unsigned int dxs, unsigned int dys, void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
+void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height);
+void *spudec_new(unsigned int *palette);
 void spudec_free(void *this);
 void spudec_reset(void *this);	// called after seek
 
-#endif
 #endif
 




More information about the MPlayer-cvslog mailing list