rtp: h265: hook up move RTP H.265 payloader/depayloader to build
authorTim-Philipp Müller <tim@centricular.com>
Tue, 16 Feb 2016 00:19:00 +0000 (00:19 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Tue, 16 Feb 2016 00:25:50 +0000 (00:25 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=761606

gst/rtp/Makefile.am
gst/rtp/gstrtp.c

index 00a2e08..9a59cb5 100644 (file)
@@ -46,6 +46,8 @@ libgstrtp_la_SOURCES = \
        gstrtph263pay.c \
        gstrtph264depay.c \
        gstrtph264pay.c \
+       gstrtph265depay.c \
+       gstrtph265pay.c \
        gstrtpj2kdepay.c \
        gstrtpj2kpay.c \
        gstrtpjpegdepay.c \
@@ -152,6 +154,9 @@ noinst_HEADERS =                    \
        gstrtph263pay.h \
        gstrtph264depay.h \
        gstrtph264pay.h \
+       gstrtph265depay.h \
+       gstrtph265pay.h \
+       gstrtph265types.h \
        gstrtpj2kdepay.h \
        gstrtpj2kpay.h \
        gstrtpjpegdepay.h \
index 6c85517..5058b03 100644 (file)
@@ -64,6 +64,8 @@
 #include "gstrtph263pay.h"
 #include "gstrtph264depay.h"
 #include "gstrtph264pay.h"
+#include "gstrtph265depay.h"
+#include "gstrtph265pay.h"
 #include "gstrtpj2kdepay.h"
 #include "gstrtpj2kpay.h"
 #include "gstrtpjpegdepay.h"
@@ -232,6 +234,12 @@ plugin_init (GstPlugin * plugin)
   if (!gst_rtp_h264_pay_plugin_init (plugin))
     return FALSE;
 
+  if (!gst_rtp_h265_depay_plugin_init (plugin))
+    return FALSE;
+
+  if (!gst_rtp_h265_pay_plugin_init (plugin))
+    return FALSE;
+
   if (!gst_rtp_j2k_depay_plugin_init (plugin))
     return FALSE;