diff options
Diffstat (limited to 'multimedia/x265/files/patch-bug-422')
-rw-r--r-- | multimedia/x265/files/patch-bug-422 | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/multimedia/x265/files/patch-bug-422 b/multimedia/x265/files/patch-bug-422 deleted file mode 100644 index b26f06db7be1..000000000000 --- a/multimedia/x265/files/patch-bug-422 +++ /dev/null @@ -1,13 +0,0 @@ -See: - - https://bitbucket.org/multicoreware/x265/issues/422 - ---- common/pixel.cpp 2018-05-21 08:33:10 UTC -+++ common/pixel.cpp 2018-08-05 21:57:26 UTC -@@ -923,5 +923,5 @@ - { - for (int i = 0; i < count; i++) -- dst[i] = (uint16_t)(src[i] * 256.0); -+ dst[i] = (int16_t)(src[i] * 256.0); - } - |