1 #ifdef HAVE_CONFIG_H
2 # include "config.h"
3 #endif
4
5 #include <gst/gst.h>
6 #include "gstaudioparse.h"
7 #include "gstvideoparse.h"
8
9 static gboolean
plugin_init(GstPlugin * plugin)10 plugin_init (GstPlugin * plugin)
11 {
12 gboolean ret = FALSE;
13
14 ret |= GST_ELEMENT_REGISTER (videoparse, plugin);
15 ret |= GST_ELEMENT_REGISTER (audioparse, plugin);
16
17 return ret;
18 }
19
20 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
21 GST_VERSION_MINOR,
22 legacyrawparse,
23 "Parses byte streams into raw frames",
24 plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
25