diff options
author | Max Kellermann <max@duempel.org> | 2011-09-14 22:01:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-09-14 22:01:55 +0200 |
commit | dd33317f459f7dad954cb9d155a93339fe6d163c (patch) | |
tree | c0313532f3da6c858552d538ab25bf02fd830cf6 /src/input_internal.c | |
parent | c344d63fb38c5d5aec4ad11815762e7ba1a13a31 (diff) | |
download | mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.tar.gz mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.tar.xz mpd-dd33317f459f7dad954cb9d155a93339fe6d163c.zip |
input_stream: move input_stream_init(), _deinit() to _internal.c
Diffstat (limited to '')
-rw-r--r-- | src/input_internal.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/input_internal.c b/src/input_internal.c new file mode 100644 index 000000000..2ef66b260 --- /dev/null +++ b/src/input_internal.c @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2003-2011 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include "config.h" +#include "input_internal.h" +#include "input_stream.h" + +void +input_stream_init(struct input_stream *is, const struct input_plugin *plugin, + const char *uri) +{ + is->plugin = plugin; + is->uri = g_strdup(uri); + is->ready = false; + is->seekable = false; + is->size = -1; + is->offset = 0; + is->mime = NULL; +} + +void +input_stream_deinit(struct input_stream *is) +{ + g_free(is->uri); + g_free(is->mime); +} |