New typefind system: bytestream is now part of the core all plugins have been modifie...
[platform/upstream/gstreamer.git] / gst / gstbytestream.c
similarity index 98%
rename from libs/gst/bytestream/bytestream.c
rename to gst/gstbytestream.c
index 9e0f2c9..fc3c3a4 100644 (file)
@@ -28,7 +28,7 @@
 #include <stdlib.h>
 
 #include <gst/gstinfo.h>
-#include "bytestream.h"
+#include <gst/gstbytestream.h>
 
 GST_DEBUG_CATEGORY_STATIC(debug_bs);
 #define GST_CAT_DEFAULT debug_bs
@@ -744,18 +744,3 @@ gst_bytestream_print_status (GstByteStream * bs)
              GST_BUFFER_OFFSET (buf), GST_BUFFER_SIZE (buf));
   }
 }
-
-
-static gboolean
-plugin_init (GModule *module, GstPlugin *plugin)
-{
-  gst_plugin_set_longname (plugin, "GstByteStream: a byte-oriented layer on top of buffer-passing");
-  return TRUE;
-}
-
-GstPluginDesc plugin_desc = {
-  GST_VERSION_MAJOR,
-  GST_VERSION_MINOR,
-  "gstbytestream",
-  plugin_init
-};