From: Jiyong Date: Fri, 23 May 2025 01:23:01 +0000 (+0900) Subject: rtp: Include rtpvrawpay/depay X-Git-Tag: accepted/tizen/unified/20250612.143553^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=HEAD;p=platform%2Fupstream%2Fgstreamer.git rtp: Include rtpvrawpay/depay The rtpvrawpay/depay have been included. [Version] 1.24.11-19 [Issue Type] next-mirroring Change-Id: Ifaca1a802cd93cf5a4958a2c6d3babe1c43fd955 --- diff --git a/packaging/gstreamer.spec b/packaging/gstreamer.spec index 944e0ea818..adf812338a 100644 --- a/packaging/gstreamer.spec +++ b/packaging/gstreamer.spec @@ -61,7 +61,7 @@ Name: %{_name} Version: 1.24.11 -Release: 18 +Release: 19 Summary: Streaming-Media Framework Runtime License: LGPL-2.0+ Group: Multimedia/Framework diff --git a/subprojects/gst-plugins-good/gst/rtp/gstrtp.c b/subprojects/gst-plugins-good/gst/rtp/gstrtp.c index ec1649e842..a934e79cea 100644 --- a/subprojects/gst-plugins-good/gst/rtp/gstrtp.c +++ b/subprojects/gst-plugins-good/gst/rtp/gstrtp.c @@ -129,10 +129,8 @@ plugin_init (GstPlugin * plugin) ret |= GST_ELEMENT_REGISTER (rtpvp8pay, plugin); ret |= GST_ELEMENT_REGISTER (rtpvp9depay, plugin); ret |= GST_ELEMENT_REGISTER (rtpvp9pay, plugin); -#ifndef TIZEN_FEATURE_EXCLUDE_UNUSED_ELEMENTS ret |= GST_ELEMENT_REGISTER (rtpvrawdepay, plugin); ret |= GST_ELEMENT_REGISTER (rtpvrawpay, plugin); -#endif ret |= GST_ELEMENT_REGISTER (rtpstreampay, plugin); ret |= GST_ELEMENT_REGISTER (rtpstreamdepay, plugin); #ifndef TIZEN_FEATURE_EXCLUDE_UNUSED_ELEMENTS diff --git a/subprojects/gst-plugins-good/gst/rtp/meson.build b/subprojects/gst-plugins-good/gst/rtp/meson.build index 370705b861..97a43db442 100644 --- a/subprojects/gst-plugins-good/gst/rtp/meson.build +++ b/subprojects/gst-plugins-good/gst/rtp/meson.build @@ -37,6 +37,8 @@ rtp_sources = [ 'gstrtpvp8pay.c', 'gstrtpvp9depay.c', 'gstrtpvp9pay.c', + 'gstrtpvrawdepay.c', + 'gstrtpvrawpay.c', 'gstrtpstreampay.c', 'gstrtpstreamdepay.c', 'gstrtputils.c',