wfd : Modify data type which assign gsize 22/283122/4 accepted/tizen/unified/20221102.020544
authorHyunsoo Park <hance.park@samsung.com>
Tue, 18 Oct 2022 08:51:12 +0000 (17:51 +0900)
committerHyunsoo Park <hance.park@samsung.com>
Wed, 19 Oct 2022 08:10:57 +0000 (17:10 +0900)
- Change variables data type enable to get gsize variable.

[Version] 1.20.0-12
[Issue Type] Update

Change-Id: I6021ad8443a015c7b3f6aef8ff459753aca2767c
Signed-off-by: Hyunsoo Park <hance.park@samsung.com>
packaging/gst-plugins-tizen.spec
wfdmanager/wfdrtpbuffer/gstwfdrtpbuffer.c
wfdtsdemux/gstwfdh264parser.h
wfdtsdemux/gstwfdtssection.h

index 7e65c66..19cb03e 100644 (file)
@@ -5,7 +5,7 @@
 Name:       gst-plugins-tizen
 Version:    1.20.0
 Summary:    GStreamer tizen plugins (common)
-Release:    11
+Release:    12
 Group:      Multimedia/Framework
 Url:        http://gstreamer.freedesktop.org/
 License:    LGPL-2.1+
index 20244b8..60a1b09 100644 (file)
@@ -2001,7 +2001,7 @@ calculate_expected (GstWfdRTPBuffer * jitterbuffer, guint32 expected,
 
   if (total_duration > priv->latency_ns) {
     GstClockTime gap_time;
-    guint lost_packets;
+    guint64 lost_packets;
 
     gap_time = total_duration - priv->latency_ns;
 
@@ -2704,7 +2704,7 @@ do_expected_timeout (GstWfdRTPBuffer * jitterbuffer, TimerData * timer,
 {
   GstWfdRTPBufferPrivate *priv = jitterbuffer->priv;
   GstEvent *event;
-  guint delay, delay_ms, avg_rtx_rtt_ms;
+  gsize delay, delay_ms, avg_rtx_rtt_ms;
   guint rtx_retry_timeout_ms, rtx_retry_period_ms;
   GstClockTime rtx_retry_period;
   GstClockTime rtx_retry_timeout;
index 92b2f92..b7bcb31 100644 (file)
@@ -262,7 +262,7 @@ struct _GstWFDH264NalUnit
 
   /* calculated values */
   guint8 idr_pic_flag;
-  guint size;
+  gsize size;
   guint offset;
   guint sc_offset;
   gboolean valid;
index ad904f0..7c2f7f0 100644 (file)
@@ -159,7 +159,7 @@ struct _GstWFDTSSection
    * i.e. the first byte is the table_id field */
   guint8       *data;
   /* section_length: length of data (including final CRC if present) */
-  guint                section_length;
+  gsize         section_length;
   /* cached_parsed: cached copy of parsed section */
   gpointer     *cached_parsed;
   /* destroy_parsed: function to clear cached_parsed */