summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-02-16 00:19:00 +0000
committerTim-Philipp Müller <tim@centricular.com>2016-02-16 00:25:50 +0000
commit9d0f1277039ddaa147b40b5c9d8cef9761077c7f (patch)
treee66b4cd6d5046a7ba1668a7c49232153f2882357
parent7f9f3d38b249e495fdd1e7870a1b7dbb0bbc1395 (diff)
downloadgstreamer-plugins-good-9d0f1277039ddaa147b40b5c9d8cef9761077c7f.tar.gz
rtp: h265: hook up move RTP H.265 payloader/depayloader to build
https://bugzilla.gnome.org/show_bug.cgi?id=761606
-rw-r--r--gst/rtp/Makefile.am5
-rw-r--r--gst/rtp/gstrtp.c8
2 files changed, 13 insertions, 0 deletions
diff --git a/gst/rtp/Makefile.am b/gst/rtp/Makefile.am
index 00a2e08b1..9a59cb598 100644
--- a/gst/rtp/Makefile.am
+++ b/gst/rtp/Makefile.am
@@ -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 \
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 6c85517f6..5058b037b 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -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;