diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-02 02:55:26 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-10-21 18:33:57 -0500 |
commit | 289427675ea063b92d60ffc93f521121b424769b (patch) | |
tree | c1fd175120ec2006421bbbc2c69b593b032d9f79 /user/gst-plugins-good/endian-test.patch | |
parent | fdc1d0bac231062f0734d5bc15b3d8a8263c8c40 (diff) | |
download | packages-289427675ea063b92d60ffc93f521121b424769b.tar.gz packages-289427675ea063b92d60ffc93f521121b424769b.tar.bz2 packages-289427675ea063b92d60ffc93f521121b424769b.tar.xz packages-289427675ea063b92d60ffc93f521121b424769b.zip |
user/gst-plugins-good: Update to 1.20.1
Diffstat (limited to 'user/gst-plugins-good/endian-test.patch')
-rw-r--r-- | user/gst-plugins-good/endian-test.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/user/gst-plugins-good/endian-test.patch b/user/gst-plugins-good/endian-test.patch deleted file mode 100644 index 52065bf34..000000000 --- a/user/gst-plugins-good/endian-test.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- gst-plugins-good-1.14.4/tests/check/elements/alpha.c.old 2018-03-23 20:44:48.000000000 +0000 -+++ gst-plugins-good-1.14.4/tests/check/elements/alpha.c 2019-01-10 15:47:17.410000000 +0000 -@@ -99,9 +99,17 @@ - int i; - - if (color == FILL_GREEN) -+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ -+ rgba_col = 0x00ff00ff; -+#else - rgba_col = 0xff00ff00; /* GREEN */ -+#endif - else -+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ -+ rgba_col = 0x0000ffff; -+#else - rgba_col = 0xffff0000; /* BLUE */ -+#endif - - for (i = 0; i < HEIGHT * WIDTH; i++) - rgba32[i] = rgba_col; |