mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtp: h265: hook up move RTP H.265 payloader/depayloader to build
https://bugzilla.gnome.org/show_bug.cgi?id=761606
This commit is contained in:
parent
7f9f3d38b2
commit
9d0f127703
2 changed files with 13 additions and 0 deletions
|
@ -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 \
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue