diff options
Diffstat (limited to 'gst/rawparse/plugin.c')
-rw-r--r-- | gst/rawparse/plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/rawparse/plugin.c b/gst/rawparse/plugin.c index dc860e18f..bb21f77b1 100644 --- a/gst/rawparse/plugin.c +++ b/gst/rawparse/plugin.c @@ -3,6 +3,7 @@ #endif #include <gst/gst.h> +#include "gstunalignedaudioparse.h" #include "gstaudioparse.h" #include "gstvideoparse.h" @@ -15,6 +16,8 @@ plugin_init (GstPlugin * plugin) gst_video_parse_get_type ()); ret &= gst_element_register (plugin, "audioparse", GST_RANK_NONE, gst_audio_parse_get_type ()); + ret &= gst_element_register (plugin, "unalignedaudioparse", GST_RANK_MARGINAL, + gst_unaligned_audio_parse_get_type ()); return ret; } |