# HG changeset patch # User mf0102 <0102@gmx.at> # Date 1189367249 -7200 # Node ID 6a5e0d24a4748a9016520c815c6c3631490d04bb # Parent 0050e6408d9e5ede16584b9348cc2a0f403f8933# Parent 416cca12988f6564d582b77555dbead3515e4e67 branch merge diff -r 0050e6408d9e -r 6a5e0d24a474 .hgtags --- a/.hgtags Sun Sep 09 21:46:58 2007 +0200 +++ b/.hgtags Sun Sep 09 21:47:29 2007 +0200 @@ -1,3 +1,4 @@ fbeb9446aa2e626eb1944fd872c4995cf3182b43 audacious-plugins-1.4.0-DR1 76c778a3a5fe18c8ea5ddb0c361270a38452edc7 audacious-plugins-1.4.0-dr1 5f892afeb8e1ff5e60f32449359a59eda383f14a audacious-plugins-1.4.0-dr2 +49704b7f41db4070965a16fd6856a7e4760dbc1c audacious-plugins-1.4.0-dr3 diff -r 0050e6408d9e -r 6a5e0d24a474 src/pulse_audio/pulse_audio.c --- a/src/pulse_audio/pulse_audio.c Sun Sep 09 21:46:58 2007 +0200 +++ b/src/pulse_audio/pulse_audio.c Sun Sep 09 21:47:29 2007 +0200 @@ -704,27 +704,21 @@ } static OutputPlugin pulse_op = { - NULL, - NULL, - "PulseAudio Output Plugin", - NULL, - NULL, - pulse_about, - NULL, - pulse_get_volume, - pulse_set_volume, - pulse_open, - pulse_write, - pulse_close, - pulse_flush, - pulse_pause, - pulse_free, - pulse_playing, - pulse_get_output_time, - pulse_get_written_time, - NULL, + .description = "PulseAudio Output Plugin", + .about = pulse_about, + .get_volume = pulse_get_volume, + .set_volume = pulse_set_volume, + .open_audio = pulse_open, + .write_audio = pulse_write, + .close_audio = pulse_close, + .flush = pulse_flush, + .pause = pulse_pause, + .buffer_free = pulse_free, + .buffer_playing = pulse_playing, + .output_time = pulse_get_output_time, + .written_time = pulse_get_written_time, }; OutputPlugin *pulse_oplist[] = { &pulse_op, NULL }; -DECLARE_PLUGIN(pulse, NULL, NULL, NULL, pulse_oplist, NULL, NULL, NULL, NULL); +SIMPLE_OUTPUT_PLUGIN(pulser, pulse_oplist); diff -r 0050e6408d9e -r 6a5e0d24a474 src/vtx/vtx.c --- a/src/vtx/vtx.c Sun Sep 09 21:46:58 2007 +0200 +++ b/src/vtx/vtx.c Sun Sep 09 21:47:29 2007 +0200 @@ -325,4 +325,4 @@ InputPlugin *vtx_iplist[] = { &vtx_ip, NULL }; -DECLARE_PLUGIN(vtx, NULL, NULL, vtx_iplist, NULL, NULL, NULL, NULL, NULL); +SIMPLE_INPUT_PLUGIN(vtx, vtx_iplist);