From 9d0f1277039ddaa147b40b5c9d8cef9761077c7f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 16 Feb 2016 00:19:00 +0000 Subject: [PATCH] rtp: h265: hook up move RTP H.265 payloader/depayloader to build https://bugzilla.gnome.org/show_bug.cgi?id=761606 --- gst/rtp/Makefile.am | 5 +++++ gst/rtp/gstrtp.c | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/gst/rtp/Makefile.am b/gst/rtp/Makefile.am index 00a2e08..9a59cb5 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 6c85517..5058b03 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; -- 2.7.4