[Toxine-cvs] CVS: toxine/src/plugins vo_aa.c,1.12,1.13 vo_dxr3.c,1.16,1.17 vo_none.c,1.9,1.10 vo_plu
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2003-01-21 16:53:46
|
Update of /cvsroot/toxine/toxine/src/plugins In directory sc8-pr-cvs1:/tmp/cvs-serv7645/plugins Modified Files: vo_aa.c vo_dxr3.c vo_none.c vo_plugin.h vo_x11.c Log Message: @@made playlist works again. Some new xine api functions adding. Index: vo_aa.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/plugins/vo_aa.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- vo_aa.c 17 Jan 2003 23:39:58 -0000 1.12 +++ vo_aa.c 21 Jan 2003 16:53:37 -0000 1.13 @@ -122,7 +122,7 @@ return "Video out plugin supporting AsciiArt driver.\n"; } -static void receive_xine_event(toxine_t *tox, xine_event_t *event) { +static void receive_xine_event(toxine_t *tox, const xine_event_t *event) { } static int is_fullscreen(toxine_t *tox) { Index: vo_dxr3.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/plugins/vo_dxr3.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- vo_dxr3.c 17 Jan 2003 23:39:59 -0000 1.16 +++ vo_dxr3.c 21 Jan 2003 16:53:37 -0000 1.17 @@ -122,7 +122,7 @@ return "Video out plugin supports DXR3/HW+ cards (lb:letterboxed, ws:widescreen).\n"; } -static void receive_xine_event(toxine_t *tox, xine_event_t *event) { +static void receive_xine_event(toxine_t *tox, const xine_event_t *event) { } static int is_fullscreen(toxine_t *tox) { Index: vo_none.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/plugins/vo_none.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- vo_none.c 18 Jan 2003 17:01:28 -0000 1.9 +++ vo_none.c 21 Jan 2003 16:53:38 -0000 1.10 @@ -90,7 +90,7 @@ return "Video out plugin which display nothing (useful for audio only playback).\n"; } -static void receive_xine_event(toxine_t *tox, xine_event_t *event) { +static void receive_xine_event(toxine_t *tox, const xine_event_t *event) { } static int is_fullscreen(toxine_t *tox) { Index: vo_plugin.h =================================================================== RCS file: /cvsroot/toxine/toxine/src/plugins/vo_plugin.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- vo_plugin.h 17 Jan 2003 23:40:00 -0000 1.9 +++ vo_plugin.h 21 Jan 2003 16:53:38 -0000 1.10 @@ -34,7 +34,7 @@ const char *(*get_identifier)(void); const char **(*get_names)(void); const char *(*get_help)(void); - void (*receive_xine_event)(toxine_t *, xine_event_t *); + void (*receive_xine_event)(toxine_t *, const xine_event_t *); int (*is_fullscreen)(toxine_t *); void (*fullscreen)(toxine_t *); void *private; Index: vo_x11.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/plugins/vo_x11.c,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- vo_x11.c 18 Jan 2003 17:01:28 -0000 1.21 +++ vo_x11.c 21 Jan 2003 16:53:39 -0000 1.22 @@ -1105,7 +1105,7 @@ /* * */ -static void receive_xine_event(toxine_t *tox, xine_event_t *event) { +static void receive_xine_event(toxine_t *tox, const xine_event_t *event) { } /* |