summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorOlivier Crete <tester@tester.ca>2008-05-12 18:27:24 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-05-12 18:27:24 +0000
commit894206be3ddf0c7e6adb7b768a34c9262444ef3a (patch)
tree1f331deb87d8800336119712daebb1edcab8ed44 /gst/rtp/gstrtp.c
parent10f7a99f1adcd517086bd6a7950aae823fbc5496 (diff)
gst/rtp/: Add DV pay and depayloaders. Fixes #532423.
Original commit message from CVS: Based on patch by: Olivier Crete <tester at tester dot ca> * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpdvdepay.c: (gst_rtp_dv_depay_base_init), (gst_rtp_dv_depay_class_init), (gst_rtp_dv_depay_init), (parse_encode), (gst_rtp_dv_depay_setcaps), (calculate_difblock_location), (gst_rtp_dv_depay_process), (gst_rtp_dv_depay_reset), (gst_rtp_dv_depay_change_state), (gst_rtp_dv_depay_plugin_init): * gst/rtp/gstrtpdvdepay.h: * gst/rtp/gstrtpdvpay.c: (gst_dv_pay_mode_get_type), (gst_rtp_dv_pay_base_init), (gst_rtp_dv_pay_class_init), (gst_rtp_dv_pay_init), (gst_dv_pay_set_property), (gst_dv_pay_get_property), (gst_rtp_dv_pay_setcaps), (gst_dv_pay_negotiate), (include_dif), (gst_rtp_dv_pay_handle_buffer), (gst_rtp_dv_pay_plugin_init): * gst/rtp/gstrtpdvpay.h: Add DV pay and depayloaders. Fixes #532423.
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 5fde4069..5cf19a55 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -23,6 +23,8 @@
#include "gstrtpdepay.h"
#include "gstrtpac3depay.h"
+#include "gstrtpdvdepay.h"
+#include "gstrtpdvpay.h"
#include "gstrtpilbcdepay.h"
#include "gstrtpilbcpay.h"
#include "gstrtppcmupay.h"
@@ -70,6 +72,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_ac3_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_dv_depay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_dv_pay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_ilbc_pay_plugin_init (plugin))
return FALSE;