diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:25:35 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-29 00:31:53 +0100 |
commit | d420552f02af2ad6a15cf3a70b76bf86b222c07e (patch) | |
tree | 8ab7137ed9264312aee69292d009509e70357ea7 /community/vlc/fix-test-endian.patch | |
parent | 78a6ed13e4b5cd182f28be18694d543ae179446b (diff) | |
download | aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.bz2 aports-d420552f02af2ad6a15cf3a70b76bf86b222c07e.tar.xz |
Remove more stale patches from community/
Diffstat (limited to 'community/vlc/fix-test-endian.patch')
-rw-r--r-- | community/vlc/fix-test-endian.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/community/vlc/fix-test-endian.patch b/community/vlc/fix-test-endian.patch deleted file mode 100644 index 3b08e068ac..0000000000 --- a/community/vlc/fix-test-endian.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/modules/video_chroma/copy.c b/modules/video_chroma/copy.c -index 67e147637b..d9b029274c 100644 ---- a/modules/video_chroma/copy.c -+++ b/modules/video_chroma/copy.c -@@ -34,6 +34,7 @@ - #include <vlc_picture.h> - #include <vlc_cpu.h> - #include <assert.h> -+#include <arpa/inet.h> - - #include "copy.h" - -@@ -983,10 +984,10 @@ static void piccheck(picture_t *pic, const vlc_chroma_description_t *dsc, - - assert(pic->i_planes == 2 || pic->i_planes == 3); - const uint8_t colors_8_P[3] = { 0x42, 0xF1, 0x36 }; -- const uint16_t color_8_UV = 0x36F1; -+ const uint16_t color_8_UV = ntohs(0xF136); - -- const uint16_t colors_16_P[3] = { 0x4210, 0x14F1, 0x4536 }; -- const uint32_t color_16_UV = 0x453614F1; -+ const uint16_t colors_16_P[3] = { ntohs(0x1042), ntohs(0xF114), ntohs(0x3645) }; -+ const uint32_t color_16_UV = ntohl(0xF1143645); - - assert(dsc->pixel_size == 1 || dsc->pixel_size == 2); - if (dsc->pixel_size == 1) |