unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 38ec0ba802ede1d2b25f6ddb5eebb3ec755a858a 3779 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
 
Fix a broken test:

https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/803

Patches copied from upstream source repository:

https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/commit/2ce5909f3a0b0da3abb7b794215d6b8b72a3b7fa
https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/commit/f5310ce346180a717f091f2f09bcbb3ddfb15436

From 2ce5909f3a0b0da3abb7b794215d6b8b72a3b7fa Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= <tim@centricular.com>
Date: Thu, 12 Nov 2020 23:38:21 +0000
Subject: [PATCH 1/2] tests: qtdemux: fix crash on 32-bit architectures

Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/803

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/815>
---
 tests/check/elements/qtdemux.c | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/tests/check/elements/qtdemux.c b/tests/check/elements/qtdemux.c
index 5271c6576..0c748278b 100644
--- a/tests/check/elements/qtdemux.c
+++ b/tests/check/elements/qtdemux.c
@@ -797,9 +797,10 @@ GST_START_TEST (test_qtdemux_pad_names)
       "protection-system", G_TYPE_STRING,
       "9a04f079-9840-4286-ab92-e65be0885f95", NULL);
   caps =
-      gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
-      "mss-fragmented", "timesacle", G_TYPE_UINT64, 10000000, "media-caps",
-      GST_TYPE_CAPS, mediacaps, NULL);
+      gst_caps_new_simple ("video/quicktime",
+      "variant", G_TYPE_STRING, "mss-fragmented",
+      "timesacle", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
+      "media-caps", GST_TYPE_CAPS, mediacaps, NULL);
 
   /* Send segment event* */
   event = gst_event_new_caps (caps);
@@ -852,9 +853,10 @@ GST_START_TEST (test_qtdemux_pad_names)
       "protection-system", G_TYPE_STRING,
       "9a04f079-9840-4286-ab92-e65be0885f95", NULL);
   caps =
-      gst_caps_new_simple ("video/quicktime", "variant", G_TYPE_STRING,
-      "mss-fragmented", "timesacle", G_TYPE_UINT64, 10000000, "media-caps",
-      GST_TYPE_CAPS, mediacaps, NULL);
+      gst_caps_new_simple ("video/quicktime",
+      "variant", G_TYPE_STRING, "mss-fragmented",
+      "timesacle", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
+      "media-caps", GST_TYPE_CAPS, mediacaps, NULL);
 
   /* Send segment event* */
   event = gst_event_new_caps (caps);
-- 
2.30.0


From f5310ce346180a717f091f2f09bcbb3ddfb15436 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= <tim@centricular.com>
Date: Thu, 12 Nov 2020 23:39:21 +0000
Subject: [PATCH 2/2] tests: qtdemux: fix typo in caps field

timesacle -> timescale

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/815>
---
 tests/check/elements/qtdemux.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/check/elements/qtdemux.c b/tests/check/elements/qtdemux.c
index 0c748278b..4a14c45c0 100644
--- a/tests/check/elements/qtdemux.c
+++ b/tests/check/elements/qtdemux.c
@@ -799,7 +799,7 @@ GST_START_TEST (test_qtdemux_pad_names)
   caps =
       gst_caps_new_simple ("video/quicktime",
       "variant", G_TYPE_STRING, "mss-fragmented",
-      "timesacle", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
+      "timescale", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
       "media-caps", GST_TYPE_CAPS, mediacaps, NULL);
 
   /* Send segment event* */
@@ -855,7 +855,7 @@ GST_START_TEST (test_qtdemux_pad_names)
   caps =
       gst_caps_new_simple ("video/quicktime",
       "variant", G_TYPE_STRING, "mss-fragmented",
-      "timesacle", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
+      "timescale", G_TYPE_UINT64, G_GUINT64_CONSTANT (10000000),
       "media-caps", GST_TYPE_CAPS, mediacaps, NULL);
 
   /* Send segment event* */
-- 
2.30.0


debug log:

solving 38ec0ba802 ...
found 38ec0ba802 in https://git.savannah.gnu.org/cgit/guix.git

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).