diff options
author | waker <wakeroid@gmail.com> | 2011-09-30 19:44:10 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2011-09-30 19:44:10 +0200 |
commit | 69f0c63499916d183ca9c8157aee9370687cf248 (patch) | |
tree | 8ca9e739cd684d57abe25afc7067a4b37aec9e47 | |
parent | 459fcbda488ab14aab661112c8cf64ed5cc332a0 (diff) |
disabled built-in pls/m3u code
-rw-r--r-- | playlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1168,6 +1168,7 @@ plt_insert_cue (playlist_t *plt, playItem_t *after, playItem_t *origin, int nums return plt_insert_cue_from_buffer (plt, after, origin, buf, sz, numsamples, samplerate); } +#if 0 playItem_t * plt_insert_m3u (playlist_t *plt, playItem_t *after, const char *fname, int *pabort, int (*cb)(playItem_t *it, void *data), void *user_data) { trace ("enter pl_insert_m3u\n"); @@ -1424,6 +1425,7 @@ plt_insert_pls (playlist_t *playlist, playItem_t *after, const char *fname, int } return after; } +#endif static int follow_symlinks = 0; static int ignore_archives = 0; |