From dd33317f459f7dad954cb9d155a93339fe6d163c Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Wed, 14 Sep 2011 22:01:55 +0200
Subject: input_stream: move input_stream_init(), _deinit() to _internal.c

---
 src/input_stream.h | 20 --------------------
 1 file changed, 20 deletions(-)

(limited to 'src/input_stream.h')

diff --git a/src/input_stream.h b/src/input_stream.h
index 514512592..f9cb8dbf8 100644
--- a/src/input_stream.h
+++ b/src/input_stream.h
@@ -71,26 +71,6 @@ struct input_stream {
 	char *mime;
 };
 
-static inline 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;
-}
-
-static inline void
-input_stream_deinit(struct input_stream *is)
-{
-	g_free(is->uri);
-	g_free(is->mime);
-}
-
 /**
  * Opens a new input stream.  You may not access it until the "ready"
  * flag is set.
-- 
cgit v1.2.3