summaryrefslogtreecommitdiffstats
path: root/gst/real/gstreal.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/real/gstreal.c')
-rw-r--r--gst/real/gstreal.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/real/gstreal.c b/gst/real/gstreal.c
index afb28d0e..c2a9b23a 100644
--- a/gst/real/gstreal.c
+++ b/gst/real/gstreal.c
@@ -23,6 +23,7 @@
#endif
#include "gstrealvideodec.h"
+#include "gstrealaudiodec.h"
static gboolean
plugin_init (GstPlugin * p)
@@ -30,6 +31,9 @@ plugin_init (GstPlugin * p)
if (!gst_element_register (p, "realvideodec", GST_RANK_PRIMARY,
GST_TYPE_REAL_VIDEO_DEC))
return FALSE;
+ if (!gst_element_register (p, "realaudiodec", GST_RANK_PRIMARY,
+ GST_TYPE_REAL_AUDIO_DEC))
+ return FALSE;
return TRUE;
}