mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
rtp: missing debug init after element splitting
- h264depay - h265depay - sv3vdepay Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/936>
This commit is contained in:
parent
8e8b22174d
commit
0935c7efbb
3 changed files with 9 additions and 6 deletions
|
@ -90,8 +90,9 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
);
|
||||
|
||||
#define gst_rtp_h264_depay_parent_class parent_class
|
||||
G_DEFINE_TYPE (GstRtpH264Depay, gst_rtp_h264_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD);
|
||||
G_DEFINE_TYPE_WITH_CODE (GstRtpH264Depay, gst_rtp_h264_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD, GST_DEBUG_CATEGORY_INIT (rtph264depay_debug,
|
||||
"rtph264depay", 0, "H264 Video RTP Depayloader"));
|
||||
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (rtph264depay, "rtph264depay",
|
||||
GST_RANK_SECONDARY, GST_TYPE_RTP_H264_DEPAY, rtp_element_init (plugin));
|
||||
|
||||
|
|
|
@ -96,8 +96,9 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
);
|
||||
|
||||
#define gst_rtp_h265_depay_parent_class parent_class
|
||||
G_DEFINE_TYPE (GstRtpH265Depay, gst_rtp_h265_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD);
|
||||
G_DEFINE_TYPE_WITH_CODE (GstRtpH265Depay, gst_rtp_h265_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD, GST_DEBUG_CATEGORY_INIT (rtph265depay_debug,
|
||||
"rtph265depay", 0, "H265 Video RTP Depayloader"));
|
||||
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (rtph265depay, "rtph265depay",
|
||||
GST_RANK_SECONDARY, GST_TYPE_RTP_H265_DEPAY, rtp_element_init (plugin));
|
||||
|
||||
|
|
|
@ -50,8 +50,9 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
);
|
||||
|
||||
#define gst_rtp_sv3v_depay_parent_class parent_class
|
||||
G_DEFINE_TYPE (GstRtpSV3VDepay, gst_rtp_sv3v_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD);
|
||||
G_DEFINE_TYPE_WITH_CODE (GstRtpSV3VDepay, gst_rtp_sv3v_depay,
|
||||
GST_TYPE_RTP_BASE_DEPAYLOAD, GST_DEBUG_CATEGORY_INIT (rtpsv3vdepay_debug,
|
||||
"rtpsv3vdepay", 0, "RTP SV3V depayloader"));
|
||||
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (rtpsv3vdepay, "rtpsv3vdepay",
|
||||
GST_RANK_SECONDARY, GST_TYPE_RTP_SV3V_DEPAY, rtp_element_init (plugin));
|
||||
|
||||
|
|
Loading…
Reference in a new issue