diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-07-08 14:54:31 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-07-08 15:15:30 -0700 |
commit | f44d50a94c120135faeba6b4a1e5551b4397810f (patch) | |
tree | e09b0cac67467190094e9c59c6fe085195416fa9 /tests/ref/lavfi/pixfmts_copy | |
parent | 42d622fab31dbcae91fd4b0810e0ac07027e2df1 (diff) | |
download | ffmpeg-f44d50a94c120135faeba6b4a1e5551b4397810f.tar.gz |
swscale: fix 16-bit horizontal scaling underflow.
When using e.g. lanczos scaling, values can drop below 0, so they
should never be unsigned.
Diffstat (limited to 'tests/ref/lavfi/pixfmts_copy')
-rw-r--r-- | tests/ref/lavfi/pixfmts_copy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ref/lavfi/pixfmts_copy b/tests/ref/lavfi/pixfmts_copy index ee28c4b78f..76d845abb8 100644 --- a/tests/ref/lavfi/pixfmts_copy +++ b/tests/ref/lavfi/pixfmts_copy @@ -42,8 +42,8 @@ yuv422p16be 86ad3447f97969ce095afeef81fa9abf yuv422p16le a53a9b451f4a81eeae33362c1bbd07f8 yuv440p 5a064afe2b453bb52cdb3f176b1aa1cf yuv444p 0a98447b78fd476aa39686da6a74fa2e -yuv444p16be 12554ba5f143126dc5e886b9a8be37e9 -yuv444p16le 35872903aefd0f545255a4452ccc262e +yuv444p16be 2a8e2bddfe4c208df4119aaa7dc5db28 +yuv444p16le f2117fc9cf66d3a832183e159ff71803 yuva420p a29884f3f3dfe1e00b961bc17bef3d47 yuvj420p 32eec78ba51857b16ce9b813a49b7189 yuvj422p 0dfa0ed434f73be51428758c69e082cb |