[Toxine-cvs] CVS: toxine/src commands.c,1.9,1.10
Brought to you by:
f1rmb
From: Daniel Caujolle-B. <f1...@us...> - 2002-07-03 09:03:19
|
Update of /cvsroot/toxine/toxine/src In directory usw-pr-cvs1:/tmp/cvs-serv9012/src Modified Files: commands.c Log Message: Change few functions prototype in toxine_vo_plugin_t (get rid of toxine_vo_plugin_t * param, it's self contained in the toxine_t object.). Index: commands.c =================================================================== RCS file: /cvsroot/toxine/toxine/src/commands.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- commands.c 3 Jul 2002 08:44:42 -0000 1.9 +++ commands.c 3 Jul 2002 09:03:16 -0000 1.10 @@ -474,7 +474,7 @@ return 0; } - tox->video.cur_plugin->video_out_init(tox, tox->video.cur_plugin); + tox->video.cur_plugin->video_out_init(tox); /* Display plugin help string, if available */ if(tox->video.cur_plugin->get_help) { @@ -777,7 +777,7 @@ _xine_exit(NULL, tox, NULL); if(tox->video.cur_plugin && tox->video.cur_plugin->video_out_deinit) - tox->video.cur_plugin->video_out_deinit(tox, tox->video.cur_plugin); + tox->video.cur_plugin->video_out_deinit(tox); } @@ -834,7 +834,7 @@ int fullscreen; CHECK_XINE(tox); if(tox->video.cur_plugin->is_fullscreen) { - fullscreen = tox->video.cur_plugin->is_fullscreen(tox, tox->video.cur_plugin); + fullscreen = tox->video.cur_plugin->is_fullscreen(tox); pinfo("fullscreen is %d\n", fullscreen); pinfo(".\n"); } @@ -927,7 +927,7 @@ else if(toxine_is_arg_contain(tox, 2, "fullscreen")) { CHECK_XINE(tox); if(tox->video.cur_plugin->fullscreen) - tox->video.cur_plugin->fullscreen(tox, tox->video.cur_plugin); + tox->video.cur_plugin->fullscreen(tox); } } } |