# HG changeset patch # User William Pitcock # Date 1192325908 18000 # Node ID 059bd21a0c80758c21f2e404e3723f1df807375e # Parent d8e453d09ee440a180ce3af16cc174cf8f33fab5 PlaylistContainer API updates diff -r d8e453d09ee4 -r 059bd21a0c80 src/m3u/m3u.c --- a/src/m3u/m3u.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/m3u/m3u.c Sat Oct 13 20:38:28 2007 -0500 @@ -207,12 +207,12 @@ static void init(void) { - playlist_container_register(&plc_m3u); + aud_playlist_container_register(&plc_m3u); } static void cleanup(void) { - playlist_container_unregister(&plc_m3u); + aud_playlist_container_unregister(&plc_m3u); } DECLARE_PLUGIN(m3u, init, cleanup, NULL, NULL, NULL, NULL, NULL, NULL); diff -r d8e453d09ee4 -r 059bd21a0c80 src/pls/pls.c --- a/src/pls/pls.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/pls/pls.c Sat Oct 13 20:38:28 2007 -0500 @@ -140,12 +140,12 @@ static void init(void) { - playlist_container_register(&plc_pls); + aud_playlist_container_register(&plc_pls); } static void cleanup(void) { - playlist_container_unregister(&plc_pls); + aud_playlist_container_unregister(&plc_pls); } DECLARE_PLUGIN(pls, init, cleanup, NULL, NULL, NULL, NULL, NULL, NULL); diff -r d8e453d09ee4 -r 059bd21a0c80 src/xspf/xspf.c --- a/src/xspf/xspf.c Sat Oct 13 20:12:45 2007 -0500 +++ b/src/xspf/xspf.c Sat Oct 13 20:38:28 2007 -0500 @@ -565,13 +565,13 @@ static void xspf_init(void) { - playlist_container_register(&plc_xspf); + aud_playlist_container_register(&plc_xspf); } static void xspf_cleanup(void) { - playlist_container_unregister(&plc_xspf); + aud_playlist_container_unregister(&plc_xspf); }